模型“改变”,但事实并非如此

发布于 2024-12-09 12:19:20 字数 536 浏览 0 评论 0原文

我有一个观点:

class FancyView extends Backbone.View
    template: #fancytemplate

    initialize: () ->
        @add()
        @model.bind('change', @update)

    add: () ->
        $(@el).html($(@template).tmpl(@model.toJSON())).prependTo('#fancy')

    update: () ->
        $(@el).html($(@template).tmpl(@model.toJSON()))

当更新中的日志记录 @model.changedAttributes() 发生更改时,会显示 data 下的更改,但日志记录 @model 仍然显示旧数据,因此更新时没有任何变化。

为什么@model仍然是旧数据?

I have a view:

class FancyView extends Backbone.View
    template: #fancytemplate

    initialize: () ->
        @add()
        @model.bind('change', @update)

    add: () ->
        $(@el).html($(@template).tmpl(@model.toJSON())).prependTo('#fancy')

    update: () ->
        $(@el).html($(@template).tmpl(@model.toJSON()))

When a change comes in logging @model.changedAttributes() in update shows changes under data but logging @model still shows the old data and thus nothing changes on update.

Why is @model still the old data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹梦 2024-12-16 12:19:20

很高兴看到更多...模板是什么样子的?您使用什么模板引擎?

我可以说我立刻就看到了一个问题...您需要使用“粗箭头”(=>) 而不是 (->)您的更新功能。如果不这样做,当事件触发时,@el@template@model 将处于错误的上下文中。

update: =>
    $(@el).html($(@template).tmpl(@model.toJSON()))

It would be nice to see more... what does the template look like? What templating engine are you using?

I can say that I see one problem off the bat... you need to use the "fat arrow" (=>) instead of (->) for your update function. If you don't, @el, @template and @model will be in the wrong context when the event fires.

update: =>
    $(@el).html($(@template).tmpl(@model.toJSON()))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文