index.js:74 Uncaught (in promise) TypeError: Cannot read property 'debug' of undefined
at j (index.js:74)
at Object.config (index.js:147)
at service.js:14
大概定位过去是这样的:
function j(a, b) {
if (!(!z.debug || b && b.isInnerInvoke)) {
var c = p[a];
c && (a = c), b && b._complete && delete b._complete, console.log('"' + a + '",', b || "")
}
}
很奇怪怎么都找不到网上报一样错的。。有见过的吗?
1
shmilyin 2017-01-18 22:28:00 +08:00 via iPhone
你要把自己的配置贴出来才行,另外 jssdk 可以开 debug 模式
|
2
ilaipi OP 是我傻逼了!竟然传错了参数!从服务端拿到配置之后响应体处理错了!
|