这样我就可以在我的机器和我的应用程序上无缝开发,我正在使用 javascript 加载cordova。
由于我有点卡住,这会导致问题吗?
if(SD.isMobile){
document.addEventListener("deviceready", function(){
Backbone.history.start();
//Check to see if we are in the live app
$.getScript('cordova.js', function(){
$.getScript('http://debug.build.phonegap.com/target/target-script-min.js#hutber');
SD.checkConnection();
});
}, true);
}else{
$(document).ready(function() {
Backbone.history.start();
$.getScript('http://localhost:35729/livereload.js');
});
}
另外,值得注意的是我使用的是phonegap 3.0.0版