我正在运行Ubuntu 15.04,当我尝试从英特尔XDK调用任何Web服务时 - > “探索服务”面板的响应类似于:
undefined is not a function
TypeError: undefined is not a function at intel.xdk.services.iodocs_.exports.bindCommon (http://127.0.0.1:58889/http-services/api-explorer/iodocs/api-request-common.js:60:14)
at http://127.0.0.1:58889/http-services/api-explorer/iodocs/tryit?functionName=tryIt1433289861198&apiName=db_core&isDebug=true&code=intel.xdk.services.tryIt1433289861198+%3D+intel.xdk.services.iodocs_.bindCommon.bind%28null%2C+%22intel.xdk.services.tryIt1433289
我一直在试图弄清楚发生了什么,但我没有任何线索!
答案 0 :(得分:0)
此错误可能是由于您未指定函数来构建您通过英特尔XDK进行的调用的URL。
考虑到当您尝试使用Web服务时由intel XDK创建的默认结构,您的js文件中应该包含以下内容。
(function (credentials, helpers) {
var exports = {};
exports.YourMethodName = function(params) {
var url = 'YourURLWithoutParameters'
if (params) url = url + '?' + $.param(params);
return $.ajax({url: url, type: 'GET'});
};
return exports;
})