我是一個新的主幹,並試圖找出如何在我的單頁應用程序上傳遞模型屬性。 我正在使用jquery,requirejs和下劃線的骨幹。在不同視圖中使用模型屬性值
我的代碼看起來像 型號:
define([
'jquery',
'underscore',
'backbone'
], function ($, _, Backbone) {
'use strict';
var sessionCall = Backbone.Model.extend({
url: "http://myserver/sessionCall",
defaults: {
APIKey: 'NULL'
},
initialize: function() {
$.ajaxPrefilter(function(options, originalOptions, jqXHR) {
options.crossDomain ={
crossDomain: true
};
options.xhrFields = {
withCredentials: false
};
});
return this;
}
});
return sessionCall;
});
登錄查看:
define([
'jquery',
'underscore',
'backbone',
'router',
'models/mSessionCall',
'text!tpl/login.html'
], function ($, _, Backbone, AppRouter model, tpl) {
// var loginView = Backbone.View.extend({ //if used //return loginView; below
return Backbone.View.extend({
events: {
"click #clb_login": "callLoginCheck",
"click #clb_newAccount": "callNewAccount"
},
initialize: function() {
},
el: $('#container'),
render: function() {
var template = _.template(tpl);
this.$el.html(template());
},
callLoginCheck: function (e) {
e.preventDefault(); //Don't let this button submit the form
var loginCheck = new model();
//Save working version
loginCheck.save({
success: function (loginCheck, data) {
loginCheck.set({USR_APIKey: data[0]['USR_APIKey']});
appRouter.navigate('home', true);
},
error: function(loginCheck, response) {
console.log('error');
appRouter.navigate('', true);
}
});
},
callNewAccount: function() {
appRouter.navigate('newAccount', true);
}
});
});
首頁視圖:
首先是工作完美。但是,如何在不同視圖中使用我的USR_APIKey,因爲我需要此密鑰才能在REST服務器上更新/獲取/刪除我的日期。
任何想法? thx