>我有以下控制器:
Controller.extend({
login: function(params,route,query){
console.log(query.query);
var model = new LoginModel();
this.view = new LoginView({ region: 'main', model: model });
},
});
如何在控制器操作中获取查询字符串数据?上面我只是采取行动的第三个参数,它包含
querystring
对象。有更好/更好的方法吗?如何将此数据传递到查看,然后再传递到模板?
如何在控制器操作中获取查询字符串数据?以上我只是 采用操作的第三个参数,它包含查询字符串 对象。有更好/更好的方法吗?
我认为这可能是最干净的方式。
如何将此数据传递到查看,然后再传递到模板?
从卓别林.js源代码:
module.exports = class View extends Backbone.View
...
constructor: (options) ->
# Copy some options to instance properties.
if options
for optName, optValue of options when optName in @optionNames
this[optName] = optValue
...
将选项传递给视图构造函数时:
new LoginView({ region: 'main', model: model });
这些选项成为视图的属性,因此在视图方法中,您可以调用如下:
this.region
this.model
因此,您可以传递一个额外的选项:
new LoginView({ region: 'main', model: model, query : query });
并覆盖视图中的函数getTemplateFunction
,以动态构建视图 URL 并能够传递查询值。
getTemplateFunction: function() {
// You can access this.query here
// Get template via Ajax
// Compile and return template
return Handlebars.compile(templateStr);
}
您可以在此处找到有关getTemplateFunction
的完整详细信息。
如果要向模型添加查询,可以在此处查看getTemplateData
。
希望对您有所帮助!