如何在控制器操作中获取查询字符串数据?上面我只是采取行动的第三个参数,它包含查询字符串对象。有更好/更好的方法吗?
我认为这可能是最干净的方式。
我如何将这些数据传递给视图,然后传递给模板?
从chaplin.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
此处查看。
希望能帮助到你!