我的 index.js 中出现以下错误:
未捕获的 ReferenceError:未定义 MQA
我的 index.js 文件中有以下代码:
MQA.startNewSession({
//Required for IBM MobileFirst Quality Assurance
// or "MARKET" if it is production mode.
mode: "QA",
shake: true,
protocol: 'http',
host: 'ourhostnamehere:80',
versionName: "1.0", // app release version
android: {
appKey: "91719217347da8e6daf648192dc774664978bba1",
versionNumber: "1" // app version number
}
/*ios: {
applicationKey: "<iOS MQA application key>",
versionNumber: "1.0" // app version number
}*/
},{
success: function () { console.log("mqa success"); },
error: function (e) { console.log("mqa failed: " + e); }
});
我已经确认 mqa.js 和 tracekit.js 都通过 chrome inspect 加载到我的应用程序中。
我错过了什么?