Home  >  Article  >  Backend Development  >  javascript - backbone view中获取model数据出现的问题

javascript - backbone view中获取model数据出现的问题

WBOY
WBOYOriginal
2016-06-06 20:18:441399browse

javascript - backbone view中获取model数据出现的问题

从model中获取数据第一次是空的,然后第二次获取到数据,这啥原因?

回复内容:

javascript - backbone view中获取model数据出现的问题

从model中获取数据第一次是空的,然后第二次获取到数据,这啥原因?

1、在model的initialize里初始化object的默认值;
2、在View里面监听对应事件,以及触发的callback,如下:

<code>this.listenTo(this.model, "create", this.render);</code>

model的构建是异步的,model的使用代码执行的时候,model有可能没有构建完,方法是把使用代码放到model的'create'事件(或其他能确保model构建完成的事件中)去侦听执行。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn