# interfaceForThirdParty ^7.8
提供给前端页面调用插件第三方SDK接口
# 请求参数
Prop | Type | Comment |
---|---|---|
messageType | String | 第三方SDK用来判断接口名称 |
messageContent | JSON/String | 业务参数,第三方SDK用来处理逻辑,格式(JSON/String)不限,由weex页面和SDK协商 |
# 参数代码示例
let params = {
messageType: '', // 第三方SDK用来判断接口名称,
messageContent: '',
}
1
2
3
4
5
6
2
3
4
5
6
# 接口调用示例
let params = {
messageType: '', // 第三方SDK用来判断接口名称,
messageContent: '',
}
this.$bridge
.interfaceForThirdParty(params)
.then(res => {
// this.$toast(res)
})
.catch(err => {
// this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# 返回参数
- 成功时返回N/A
# 返回示例
{
code:"xxx",//code:-12 参数错误 code:-13第三方sdk中没这个类,执行失败
msg:""
}
1
2
3
4
2
3
4