PhoneBap或Cordova通知无法在Backbone,require和javascript中工作。
所以情况是如果USERNAME或PASSWORD为空,它应该通知(使用phonegap),但它不会工作。有什么想法吗?
我有这段代码
define([
'jquery',
'backbone',
'underscore',
'base64',
'mobile',
'cordova',
'const',
'text!template/login/login.tpl.html'
],function($, Backbone, _, base64, Mobile, Cordova, Const, template){
if(!Const.USERNAME || !Const.PASSWORD)
{
navigator.notification.alert("Invalid Username/Password!");
$("input").val("");
}else{
var auth = EncodeAuth(Const.USERNAME,Const.PASSWORD);
var sendAuthorization = function (xhr) {
xhr.setRequestHeader('Authorization', auth)
};
this.model.save(this.model, {
beforeSend : sendAuthorization,
success: function(model,result){
if(result.ErrorMessage === null)
{
alert(JSON.stringify(result.Message));
$("input").val("");
}
else
{
alert(JSON.stringify(result.ErrorMessage));
$("input").val("");
}
},
答案 0 :(得分:0)
解决了我的问题。我使用了错误版本的cordova或phonegap。我正在使用Android版本,因为我也在Windows上查看它。