gpt4 book ai didi

javascript - 如何使用 Backbone 生态模板中的自定义模型功能?

转载 作者:行者123 更新时间:2023-11-28 09:26:58 29 4
gpt4 key购买 nike

模型

Network.Models.FeedItem = Backbone.Model.extend({
isPost: function() {
return this.get('template') === 'post';
}
})

Network.Models.Post = Backbone.Model.extend({
urlRoot: '/p',

hasImageInDetails: function() {
if(this.get('details').match(/<img[^<]*>[\w\d]*<\/img>|<img[^\/]*\/>/i)) {
return true
}
}
)}

模板feed_items/post.jst.eco

  <% if @model.hasImageInDetails(): %>
has image
<% end %>

观看次数

Network.Views.FeedItemView = Backbone.View.extend({
initialize: function() {
var self = this;
this.template = JST[this.path()];
},

render: function() {
var self = this;
$(this.el).html(this.template({ model: this.model }));

if (this.model.isPost()) {
this.questionView = new Network.Views.FeedItems.Post({
model: this.model,
el: this.$el,
parent: this
});
}
}
});

Network.Views.FeedItems.Post = Backbone.View.extend({
initialize: function() {
this.render();
},

render: function() {
var self = this;
}
});

但是我收到错误:

Uncaught TypeError: Object [object Object] has no method 'hasImageInDetails' 

最佳答案

从您的代码看来,您希望 FeedItemView 处理 FeedItem 类型的模型,因为您调用了方法 model.isPost(),它是在 FeedItem 上定义的。 Eco 找不到的方法是在 Post 模型上定义的,因此从逻辑上讲,其中一个方法将会失败。

您的意思是从 FeedItem 扩展 Post 吗?在这种情况下,而不是:

Network.Models.Post = Backbone.Model.extend({ ... });

您应该这样声明模型:

Network.Models.Post = Network.Models.FeedItem.extend({ ... });

关于javascript - 如何使用 Backbone 生态模板中的自定义模型功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14219022/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com