在小程序后台添加了插件,然后按照官方提供的文档引入的插件,而且按照官方提供的代码测试:
var myPluginInterface = requirePlugin('myPlugin');
myPluginInterface.getLocation('openid').then(res => {
console.log(res)
})
上面这个就显示正常code是0
var myPluginInterface = requirePlugin('myPlugin');
myPluginInterface.getAuthStatus('openid','mch_id').then(res => {
console.log(res)
})
但是这个就报错上面的截图的代码了