编辑器及远程调试上没有问题,扫描二维码预览时就有报错是怎么回事?
使用Bmob后端开发,在编辑器及远程调试上没有问题,扫描二维码预览时就有报错。
代码如下:
在调用一键登录API时真机预览会报 “登录错误,请在bmob后台填写小程序AppSecret!”,编辑器及远程调试上没有问题
var util = require( '/utils/util.js' ); var Bmob = require( '/utils/Bmob-1.6.3.min.js' ); Bmob.initialize( "xxxxx" , "xxxxx" ); App({ onLaunch: function () { this .login(); }, login: function (){ var that = this ; this .Bmob = Bmob; Bmob.User.auth().then(res => { console.log( '一键登录成功' ); console.log(res); }). catch (err => { console.log( '一键登录失败' ); console.log(err);//真机预览时 err = "登录错误,请在bmob后台填写小程序AppSecret!"; }) } }); |