すべてのビューが拡張されるベースビューを作成する必要があります。このビューをいつどこで宣言するかはよくわかりません。
基本的に、すべてのテンプレートに注入する必要がありますが、すべてのメソッドで注入global variables
するわけではありません。render()
これは今のところ私のツリー構造です:
|-main.js
|-app.js
|-require.js
|-App
| |-View
| | |-Dashboard.js
| | |-Header.js
| | |-Content.js
| |-Model
| |-Collection
| |-Template
|
|-Libs
|-...
これは私のapp.jsです
var App = {
ApiURL: "http://domain.local",
View: {},
Model: {},
Collection: {},
Registry: {},
Router: null
};
define(['backbone', 'View/Dashboard'], function(Backbone){
var AppRouter = Backbone.Router.extend({
routes : {
"dashboard": "index",
},
index: function() {
console.log('routing index route...');
var x = new App.View.Dashboard({el:$('#main-content'), type:'other'});
}
});
var initialize = function() {
App.Router = new AppRouter;
Backbone.history.start({pushState: true});
console.log('Backbone is running...');
};
return {
initialize : initialize
};
});
そして今のところ、私の見解はすべて次のBackbone.View
ように継承しています。
App.View.Dashboard = Backbone.View.extend({
Base View
アプリケーションからのすべてのビューが拡張される独自のビューを作成したいと思います。これは私がこれまでに行ったことですが、app.jsでダッシュボードビューを読み込んでいるため、このコードをどこに配置するかわかりません。前に行う必要がありますが、このベースビューが必要です。すべてのビューのオブジェクト...だから私は失われました:(
define(['backbone', 'underscore', 'twig'], function(Backbone, _){
App.View.Base = Backbone.View.extend({});
_.extends(App.View.Base.prototype, {
initialize: function(params)
{
this.el = params.el;
this.init(params);
},
init: function(params)
{
},
renderTemplate:function(template_path, data)
{
var tpl = twig({href:template_path, async:false});
// Inject variables
data.user = App.Registry.User;
data.account = App.Registry.Account;
return tpl.render(data);
}
});
});
どんなアイデアや発言でも大歓迎です。答えは最高でしょう:D
ありがとう、マキシム。