我有一个内置在 PhoneGap 中的 WebApp。我阅读了这篇文章,因此我尝试将我的应用程序移植到 Windows Phone 8 并按照此处的入门指南进行操作。
我正在使用 Marionette.js 和 Cordova 2.3.0rc2。我在这里有一个ajax调用。
$.ajax({
url : urlTemp + templateId + ".html", //This refers to a file in my local file system
data : {},
success : function(data) {
App.templates[templateId] = data;
callback.call(this, data);
},
error : function(err) {
alert('ERROR LOG: Error loading Template for: ' + urlTemp + templateId + ".html");
},
dataType : 'text'
});
不知何故,这总是出错。这在 Android 和 IOS 中运行良好。