0
在這種情況下,我如何在骨幹中使用全局變量?問題是我擁有像HomeView
這樣的120多個視圖,並且在所有視圖中定義相同的polyglot
變得太難了。有另一種方法嗎?骨幹全局變量
var TranslatetView = Backbone.View.extend({
window.polyglot = new Polyglot({phrases:{'hello':'hello'}});
var polyglot = window.polyglot.phrases;
});
var HomeView = Backbone.View.extend({
console.log(polyglot.hello);
});