LogCat显示cordova.js第415行(函数checkArgs如下所示)正在抛出未捕获的TypeError,导致我的应用程序中断。
日志显示 Uncaught TypeError: Wrong type for parameter "successCallback" of Device.getInfo: Expected Function, but got Undefined.
只有在进行AJAX调用时才会出现错误...我的AJAX调用位于
之下function checkArgs(spec, functionName, args, opt_callee) {
if (!moduleExports.enableChecks) {
return;
}
var errMsg = null;
var typeName;
for (var i = 0; i < spec.length; ++i) {
var c = spec.charAt(i),
cUpper = c.toUpperCase(),
arg = args[i];
// Asterix means allow anything.
if (c == '*') {
continue;
}
typeName = utils.typeName(arg);
if ((arg === null || arg === undefined) && c == cUpper) {
continue;
}
if (typeName != typeMap[cUpper]) {
errMsg = 'Expected ' + typeMap[cUpper];
break;
}
}
if (errMsg) {
errMsg += ', but got ' + typeName + '.';
errMsg = 'Wrong type for parameter "' + extractParamName(opt_callee || args.callee, i) + '" of ' + functionName + ': ' + errMsg;
// Don't log when running unit tests.
if (typeof jasmine == 'undefined') {
console.error(errMsg);
}
throw TypeError(errMsg);
}
}
我的AJAX电话:
var ajax = $.ajax({
type: "POST",
url: "http://www.example.com/tools/api/index.php",
data: api,
dataType:"json",
async:async
});
ajax.done(function( response ) {
// do this
});
ajax.fail(function( jqXHR, textStatus, errorThrown ) {
// do that
});
注意:我正在使用build.phonegap.com并使用版本3.3.0
任何想法或建议都将不胜感激。
UPDATE:查看使用checkArgs函数的所有源代码我发现了这个。这是使用checkArgs
的唯一其他函数/**
* Get device info
*
* @param {Function} successCallback The function to call when the heading data is available
* @param {Function} errorCallback The function to call when there is an error getting the heading data. (OPTIONAL)
*/
Device.prototype.getInfo = function(successCallback, errorCallback) {
argscheck.checkArgs('fF', 'Device.getInfo', arguments);
exec(successCallback, errorCallback, "Device", "getDeviceInfo", []);
};
为什么它会抛出错误......我不确定
答案 0 :(得分:2)
原来问题在于提取window.device
数据。
我尝试一次记录所有设备api.device = window.device
...结果设备是一个cordova函数,而不是附加静态值的对象。
我必须将代码更改为
api.device = {};
api.device.name = device.name;
api.device.phonegap = device.phonegap;
api.device.platform = device.platform;
api.device.uuid = device.uuid;
api.device.version = device.version;
之前我刚才
api.device = device;
希望这可以在将来帮助其他人。