- 浏览: 4680 次
最新评论
文章列表
如果将一个Model对象比喻成数据库中的一条记录,那么Collection就是一张数据表。它表示为一个模型集合类,用于存储和管理一系列相同类型的模型对象。
一句话说明了Model与Collection的关系。
参见:http://yujianshenbing.iteye.com/blog/1748826
最近一段时间在学习backbone,发现网上的很多资料都是旧版本的,有一些儿不适用于backbone1.0.0的最新版,尤其validate这个方法的用法。
最老的旧版中,说的是:调用model的set方法会默认调用model的validate方法;稍微旧的版本中,说到调用model的set方法,传入{silent: true},可以启动validate校验,调用save方法会强制进行校验;在1.0.0的版本中,我们来看下官网的explain:
validatemodel.validate(attributes, options) This method ...
Events is a module that can be mixed in to any object, giving the object the ability to bind and trigger custom named events. Events do not have to be declared before they are bound, and may take passed arguments. For example
var object = {};
_.extend(object, Backbone.Events);
object.on("a ...
Backbone官网: http://backbonejs.org
Github地址:https://github.com/jashkenas/backbone/
Backbone's only hard dependency is Underscore.js ( >= 1.5.0). For RESTful persistence, history support via Backbone.Router and DOM manipulation with Backbone.View, include json2.js, and either
学习前端有几年了,突然迷茫起来了,从今天开始写iteye的技术文档,分享技术,共同进步。
<script type="text/javascript">// <![CDATA[ alert("hello"); // ]]></script>
<img src="123.jpg" onerror="alert('hello');" />
<svg onerror="alert('hello');" src=" ...