admin管理员组文章数量:1345075
I'm trying to pass a parameter into a Backbone.js view, but I'm having trouble doing it.
I have a Backbone view as follows:
var DataTypesView = Backbone.View.extend({
events:{
'click .datatype': 'add'
},
initialize: function(){
console.log(this.magic);
this.render();
},
render: function(){
console.log('printing template');
console.log(this.templateString);
etc.
}});
Later, I crate the view as follows:
dataTypesView = new DataTypesView({magic:true,el:$('#dataViewSpace'),templateString:'#template'});
It doesn't work. What I don't understand is why the el
works just fine (and I can access it using jquery with this.$el.
), yet this.magic
and this.templateString
are both undefined...
Is there any way that I can pass a parameter into a view in the way I'm trying to above?
On a related note - is there any way I can pass the render function in? I initially tried passing a render function in (and removing it from the backbone view class), but when that didn't work I tried passing in simple datatypes instead... I'm assuming that whatever needs to be done to pass in a parameter for my first question will work for passing in a function.
I'm trying to pass a parameter into a Backbone.js view, but I'm having trouble doing it.
I have a Backbone view as follows:
var DataTypesView = Backbone.View.extend({
events:{
'click .datatype': 'add'
},
initialize: function(){
console.log(this.magic);
this.render();
},
render: function(){
console.log('printing template');
console.log(this.templateString);
etc.
}});
Later, I crate the view as follows:
dataTypesView = new DataTypesView({magic:true,el:$('#dataViewSpace'),templateString:'#template'});
It doesn't work. What I don't understand is why the el
works just fine (and I can access it using jquery with this.$el.
), yet this.magic
and this.templateString
are both undefined...
Is there any way that I can pass a parameter into a view in the way I'm trying to above?
On a related note - is there any way I can pass the render function in? I initially tried passing a render function in (and removing it from the backbone view class), but when that didn't work I tried passing in simple datatypes instead... I'm assuming that whatever needs to be done to pass in a parameter for my first question will work for passing in a function.
Share Improve this question edited Jul 10, 2013 at 1:31 thisissami asked Jul 10, 2013 at 1:25 thisissamithisissami 16.4k16 gold badges48 silver badges77 bronze badges3 Answers
Reset to default 6EDIT - apparently this answer doesn't work in newer versions of Backbone.
I figured it out! T'was pretty straightforward... All it took was a quick check of the Backbone.js documentation... should have done that first.
The following parameters when passed in are automatically assigned to the view (AKA you can access them with this.variableName
): model, collection, el, id, className, tagName and attributes
ALL OTHER VARIABLES can be accessed with this.options.variableName
.
From my example above, I can get access to magic
by using this.options.magic
, instead of this.magic
.
Yay!
stuff that is not unique to the framwork goes to options
look in
this.options.magic
In more recent version of Backbone (mine is 1.1.2) you can copy View constructor options this way:
initialize: function(options) {
_.extend(this, _.pick(options, 'several', 'specific', 'options'));
}
Credits goes to this github issue.
本文标签: javascriptHow can I pass a parameter into a Backbonejs viewStack Overflow
版权声明:本文标题:javascript - How can I pass a parameter into a Backbone.js view? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743762399a2534619.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论