PageRenderTime 67ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/node_modules/backbone/index.html

https://bitbucket.org/moonboots/backbone-everywhere
HTML | 2863 lines | 2452 code | 411 blank | 0 comment | 0 complexity | e2ef212d72b73e214a25274be3ba5dc3 MD5 | raw file
Possible License(s): MIT

Large files files are truncated, but you can click here to view the full file

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1">
  6. <title>Backbone.js</title>
  7. <style>
  8. body {
  9. font-size: 14px;
  10. line-height: 22px;
  11. font-family: Helvetica Neue, Helvetica, Arial;
  12. background: #f4f4f4 url(docs/images/background.png);
  13. }
  14. .interface {
  15. font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif !important;
  16. }
  17. div#sidebar {
  18. background: #fff;
  19. position: fixed;
  20. top: 0; left: 0; bottom: 0;
  21. width: 200px;
  22. overflow-y: auto;
  23. overflow-x: hidden;
  24. padding: 15px 0 30px 30px;
  25. border-right: 1px solid #ddd;
  26. box-shadow: 0 0 20px #ccc; -webkit-box-shadow: 0 0 20px #ccc; -moz-box-shadow: 0 0 20px #ccc;
  27. }
  28. a.toc_title, a.toc_title:visited {
  29. display: block;
  30. color: black;
  31. font-weight: bold;
  32. margin-top: 15px;
  33. }
  34. a.toc_title:hover {
  35. text-decoration: underline;
  36. }
  37. #sidebar .version {
  38. font-size: 10px;
  39. font-weight: normal;
  40. }
  41. ul.toc_section {
  42. font-size: 11px;
  43. line-height: 14px;
  44. margin: 5px 0 0 0;
  45. padding-left: 0px;
  46. list-style-type: none;
  47. font-family: Lucida Grande;
  48. }
  49. .toc_section li {
  50. cursor: pointer;
  51. margin: 0 0 3px 0;
  52. }
  53. .toc_section li a {
  54. text-decoration: none;
  55. color: black;
  56. }
  57. .toc_section li a:hover {
  58. text-decoration: underline;
  59. }
  60. div.container {
  61. position: relative;
  62. width: 550px;
  63. margin: 40px 0 50px 260px;
  64. }
  65. div.run {
  66. position: absolute;
  67. right: 15px;
  68. width: 26px; height: 18px;
  69. background: url('docs/images/arrows.png') no-repeat -26px 0;
  70. }
  71. div.run:active {
  72. background-position: -51px 0;
  73. }
  74. p, div.container ul {
  75. margin: 20px 0;
  76. width: 550px;
  77. }
  78. p.warning {
  79. font-size: 12px;
  80. line-height: 18px;
  81. font-style: italic;
  82. }
  83. div.container ul {
  84. list-style: circle;
  85. font-size: 12px;
  86. padding-left: 15px;
  87. }
  88. a, a:visited {
  89. color: #444;
  90. }
  91. a:active, a:hover {
  92. color: #000;
  93. }
  94. a img {
  95. border: 0;
  96. }
  97. h1, h2, h3, h4, h5, h6 {
  98. padding-top: 20px;
  99. }
  100. h2 {
  101. font-size: 20px;
  102. }
  103. b.header {
  104. font-size: 16px;
  105. line-height: 30px;
  106. }
  107. span.alias {
  108. font-size: 14px;
  109. font-style: italic;
  110. margin-left: 20px;
  111. }
  112. table {
  113. margin: 15px 0 0; padding: 0;
  114. }
  115. tr, td {
  116. margin: 0; padding: 0;
  117. }
  118. td {
  119. padding: 0px 15px 5px 0;
  120. }
  121. code, pre, tt {
  122. font-family: Monaco, Consolas, "Lucida Console", monospace;
  123. font-size: 12px;
  124. line-height: 18px;
  125. font-style: normal;
  126. }
  127. tt {
  128. padding: 0px 3px;
  129. background: #fff;
  130. border: 1px solid #ddd;
  131. zoom: 1;
  132. }
  133. code {
  134. margin-left: 20px;
  135. }
  136. pre {
  137. font-size: 12px;
  138. padding: 2px 0 2px 15px;
  139. border: 4px solid #bbb; border-top: 0; border-bottom: 0;
  140. margin: 0px 0 30px;
  141. }
  142. img.example_image {
  143. margin: 0px auto;
  144. }
  145. </style>
  146. </head>
  147. <body>
  148. <div id="sidebar" class="interface">
  149. <a class="toc_title" href="#">
  150. Backbone.js <span class="version">(0.5.3)</span>
  151. </a>
  152. <a class="toc_title" href="#Introduction">
  153. Introduction
  154. </a>
  155. <a class="toc_title" href="#Events">
  156. Events
  157. </a>
  158. <ul class="toc_section">
  159. <li> <a href="#Events-bind">bind</a></li>
  160. <li> <a href="#Events-unbind">unbind</a></li>
  161. <li> <a href="#Events-trigger">trigger</a></li>
  162. </ul>
  163. <a class="toc_title" href="#Model">
  164. Model
  165. </a>
  166. <ul class="toc_section">
  167. <li> <a href="#Model-extend">extend</a></li>
  168. <li> <a href="#Model-constructor">constructor / initialize</a></li>
  169. <li> <a href="#Model-get">get</a></li>
  170. <li> <a href="#Model-set">set</a></li>
  171. <li> <a href="#Model-escape">escape</a></li>
  172. <li> <a href="#Model-has">has</a></li>
  173. <li> <a href="#Model-unset">unset</a></li>
  174. <li> <a href="#Model-clear">clear</a></li>
  175. <li> <a href="#Model-id">id</a></li>
  176. <li> <a href="#Model-cid">cid</a></li>
  177. <li> <a href="#Model-attributes">attributes</a></li>
  178. <li> <a href="#Model-defaults">defaults</a></li>
  179. <li>- <a href="#Model-toJSON">toJSON</a></li>
  180. <li> <a href="#Model-fetch">fetch</a></li>
  181. <li> <a href="#Model-save">save</a></li>
  182. <li> <a href="#Model-destroy">destroy</a></li>
  183. <li> <a href="#Model-validate">validate</a></li>
  184. <li> <a href="#Model-url">url</a></li>
  185. <li> <a href="#Model-urlRoot">urlRoot</a></li>
  186. <li> <a href="#Model-parse">parse</a></li>
  187. <li> <a href="#Model-clone">clone</a></li>
  188. <li> <a href="#Model-isNew">isNew</a></li>
  189. <li> <a href="#Model-change">change</a></li>
  190. <li> <a href="#Model-hasChanged">hasChanged</a></li>
  191. <li> <a href="#Model-changedAttributes">changedAttributes</a></li>
  192. <li> <a href="#Model-previous">previous</a></li>
  193. <li> <a href="#Model-previousAttributes">previousAttributes</a></li>
  194. </ul>
  195. <a class="toc_title" href="#Collection">
  196. Collection
  197. </a>
  198. <ul class="toc_section">
  199. <li> <a href="#Collection-extend">extend</a></li>
  200. <li> <a href="#Collection-model">model</a></li>
  201. <li> <a href="#Collection-constructor">constructor / initialize</a></li>
  202. <li> <a href="#Collection-models">models</a></li>
  203. <li> <a href="#Collection-toJSON">toJSON</a></li>
  204. <li> <a href="#Collection-Underscore-Methods"><b>Underscore Methods (26)</b></a></li>
  205. <li> <a href="#Collection-add">add</a></li>
  206. <li> <a href="#Collection-remove">remove</a></li>
  207. <li> <a href="#Collection-get">get</a></li>
  208. <li> <a href="#Collection-getByCid">getByCid</a></li>
  209. <li> <a href="#Collection-at">at</a></li>
  210. <li> <a href="#Collection-length">length</a></li>
  211. <li> <a href="#Collection-comparator">comparator</a></li>
  212. <li> <a href="#Collection-sort">sort</a></li>
  213. <li> <a href="#Collection-pluck">pluck</a></li>
  214. <li> <a href="#Collection-url">url</a></li>
  215. <li> <a href="#Collection-parse">parse</a></li>
  216. <li> <a href="#Collection-fetch">fetch</a></li>
  217. <li> <a href="#Collection-reset">reset</a></li>
  218. <li> <a href="#Collection-create">create</a></li>
  219. </ul>
  220. <a class="toc_title" href="#Router">
  221. Router
  222. </a>
  223. <ul class="toc_section">
  224. <li> <a href="#Router-extend">extend</a></li>
  225. <li> <a href="#Router-routes">routes</a></li>
  226. <li> <a href="#Router-constructor">constructor / initialize</a></li>
  227. <li> <a href="#Router-route">route</a></li>
  228. <li> <a href="#Router-navigate">navigate</a></li>
  229. </ul>
  230. <a class="toc_title" href="#History">
  231. History
  232. </a>
  233. <ul class="toc_section">
  234. <li> <a href="#History-start">start</a></li>
  235. </ul>
  236. <a class="toc_title" href="#Sync">
  237. Sync
  238. </a>
  239. <ul class="toc_section">
  240. <li> <a href="#Sync">Backbone.sync</a></li>
  241. <li> <a href="#Sync-emulateHTTP">Backbone.emulateHTTP</a></li>
  242. <li> <a href="#Sync-emulateJSON">Backbone.emulateJSON</a></li>
  243. </ul>
  244. <a class="toc_title" href="#View">
  245. View
  246. </a>
  247. <ul class="toc_section">
  248. <li> <a href="#View-extend">extend</a></li>
  249. <li> <a href="#View-constructor">constructor / initialize</a></li>
  250. <li> <a href="#View-el">el</a></li>
  251. <li> <a href="#View-dollar">$ (jQuery or Zepto)</a></li>
  252. <li> <a href="#View-render">render</a></li>
  253. <li> <a href="#View-remove">remove</a></li>
  254. <li> <a href="#View-make">make</a></li>
  255. <li> <a href="#View-delegateEvents">delegateEvents</a></li>
  256. </ul>
  257. <a class="toc_title" href="#Utility">
  258. Utility
  259. </a>
  260. <ul class="toc_section">
  261. <li> <a href="#Utility-noConflict">noConflict</a></li>
  262. </ul>
  263. <a class="toc_title" href="#examples">
  264. Examples
  265. </a>
  266. <ul class="toc_section">
  267. <li> <a href="#examples-todos">Todos</a></li>
  268. <li> <a href="#examples-documentcloud">DocumentCloud</a></li>
  269. <li> <a href="#examples-basecamp">Basecamp Mobile</a></li>
  270. <li> <a href="#examples-flow">Flow</a></li>
  271. <li> <a href="#examples-groupon">Groupon Now!</a></li>
  272. <li> <a href="#examples-trajectory">Trajectory</a></li>
  273. <li> <a href="#examples-soundcloud">SoundCloud Mobile</a></li>
  274. <li> <a href="#examples-pandora">Pandora</a></li>
  275. <li> <a href="#examples-cloudapp">CloudApp</a></li>
  276. <li> <a href="#examples-seatgeek">SeatGeek</a></li>
  277. <li> <a href="#examples-tpm">Talking Points Memo</a></li>
  278. <li> <a href="#examples-hotel-tonight">Hotel Tonight</a></li>
  279. <li> <a href="#examples-quoteroller">Quote Roller</a></li>
  280. <li> <a href="#examples-tilemill">TileMill</a></li>
  281. <li> <a href="#examples-menagerievet">Menagerie Whiteboard</a></li>
  282. <li>- <a href="#examples-blossom">Blossom</a></li>
  283. <li>- <a href="#examples-instagreat">Insta-great!</a></li>
  284. <li>- <a href="#examples-decide">Decide</a></li>
  285. <li>- <a href="#examples-bittorrent">BitTorrent</a></li>
  286. <li>- <a href="#examples-trapit">Trapit</a></li>
  287. <li>- <a href="#examples-fluxiom">Fluxiom</a></li>
  288. <li>- <a href="#examples-chop">Chop</a></li>
  289. <li>- <a href="#examples-test-kitchen">America&rsquo;s Test Kitchen</a></li>
  290. <li>- <a href="#examples-quietwrite">QuietWrite</a></li>
  291. <li>- <a href="#examples-tzigla">Tzigla</a></li>
  292. <li>- <a href="#examples-substance">Substance</a></li>
  293. </ul>
  294. <a class="toc_title" href="#faq">
  295. F.A.Q.
  296. </a>
  297. <ul class="toc_section">
  298. <li> <a href="#FAQ-events">Catalog of Events</a></li>
  299. <li> <a href="#FAQ-tim-toady">More Than One Way To Do It</a></li>
  300. <li> <a href="#FAQ-nested">Nested Models &amp; Collections</a></li>
  301. <li> <a href="#FAQ-bootstrap">Loading Bootstrapped Models</a></li>
  302. <li> <a href="#FAQ-mvc">Traditional MVC</a></li>
  303. <li> <a href="#FAQ-this">Binding "this"</a></li>
  304. </ul>
  305. <a class="toc_title" href="#changelog">
  306. Change Log
  307. </a>
  308. </div>
  309. <div class="container">
  310. <p>
  311. <img style="width: 385px; height: 126px;" src="docs/images/backbone.png" alt="Backbone.js" />
  312. </p>
  313. <p>
  314. <a href="http://github.com/documentcloud/backbone/">Backbone</a>
  315. supplies structure to JavaScript-heavy applications by providing <b>models</b> with
  316. key-value binding and custom events, <b>collections</b> with a rich API of enumerable functions,
  317. <b>views</b> with declarative event handling, and connects it all to your
  318. existing application over a RESTful JSON interface.
  319. </p>
  320. <p>
  321. The project is <a href="http://github.com/documentcloud/backbone/">hosted on GitHub</a>,
  322. and the <a href="docs/backbone.html">annotated source code</a> is available,
  323. as well as an online <a href="test/test.html">test suite</a>, an
  324. <a href="examples/todos/index.html">example application</a> and a
  325. <a href="https://github.com/documentcloud/backbone/wiki/Tutorials%2C-blog-posts-and-example-sites">list of tutorials</a>.
  326. </p>
  327. <p>
  328. You can report bugs and discuss features on the
  329. <a href="http://github.com/documentcloud/backbone/issues">GitHub issues page</a>,
  330. on Freenode IRC in the <tt>#documentcloud</tt> channel, post questions to the
  331. <a href="https://groups.google.com/forum/#!forum/backbonejs">Google Group</a>,
  332. or send tweets to <a href="http://twitter.com/documentcloud">@documentcloud</a>.
  333. </p>
  334. <p>
  335. <i>
  336. Backbone is an open-source component of
  337. <a href="http://documentcloud.org/">DocumentCloud</a>.
  338. </i>
  339. </p>
  340. <h2 id="downloads">
  341. Downloads &amp; Dependencies
  342. <span style="padding-left: 7px; font-size:11px; font-weight: normal;" class="interface">(Right-click, and use "Save As")</span>
  343. </h2>
  344. <table>
  345. <tr>
  346. <td><a href="backbone.js">Development Version (0.5.3)</a></td>
  347. <td><i>41kb, Full Source with Comments</i></td>
  348. </tr>
  349. <tr>
  350. <td><a href="backbone-min.js">Production Version (0.5.3)</a></td>
  351. <td><i>4.6kb, Packed and Gzipped</i></td>
  352. </tr>
  353. </table>
  354. <p>
  355. Backbone's only hard dependency is
  356. <a href="http://documentcloud.github.com/underscore/">Underscore.js</a>.
  357. For RESTful persistence, history support via <a href="#Router">Backbone.Router</a>
  358. and DOM manipulation with <a href="#View">Backbone.View</a>, include
  359. <a href="https://github.com/douglascrockford/JSON-js">json2.js</a>, and either
  360. <a href="http://jquery.com">jQuery</a> <small>( > 1.4.2)</small> or
  361. <a href="http://zeptojs.com/">Zepto</a>.
  362. </p>
  363. <h2 id="Upgrading">Upgrading to 0.5.0+</h2>
  364. <p>
  365. We've taken the opportunity to clarify some naming with the <b>0.5.0</b>
  366. release. <tt>Controller</tt> is now <a href="#Router">Router</a>, and
  367. <tt>refresh</tt> is now <a href="#Collection-reset">reset</a>.
  368. The previous <tt>saveLocation</tt> and <tt>setLocation</tt>
  369. functions have been replaced by <a href="#Router-navigate">navigate</a>.
  370. <tt>Backbone.sync</tt>'s method signature has changed to allow the passing
  371. of arbitrary options to <tt>jQuery.ajax</tt>.
  372. Be sure to <a href="#History-start">opt-in</a> to <tt>pushState</tt> support,
  373. if you want to use it.
  374. </p>
  375. <h2 id="Introduction">Introduction</h2>
  376. <p>
  377. When working on a web application that involves a lot of JavaScript, one
  378. of the first things you learn is to stop tying your data to the DOM. It's all
  379. too easy to create JavaScript applications that end up as tangled piles of
  380. jQuery selectors and callbacks, all trying frantically to keep data in
  381. sync between the HTML UI, your JavaScript logic, and the database on your
  382. server. For rich client-side applications, a more structured approach
  383. is often helpful.
  384. </p>
  385. <p>
  386. With Backbone, you represent your data as
  387. <a href="#Model">Models</a>, which can be created, validated, destroyed,
  388. and saved to the server. Whenever a UI action causes an attribute of
  389. a model to change, the model triggers a <i>"change"</i> event; all
  390. the <a href="#View">Views</a> that display the model's data are notified of the
  391. event, causing them to re-render. You don't have to write the glue
  392. code that looks into the DOM to find an element with a specific <i>id</i>,
  393. and update the HTML manually
  394. &mdash; when the model changes, the views simply update themselves.
  395. </p>
  396. <p>
  397. Many of the examples that follow are runnable. Click the <i>play</i> button
  398. to execute them.
  399. </p>
  400. <h2 id="Events">Backbone.Events</h2>
  401. <p>
  402. <b>Events</b> is a module that can be mixed in to any object, giving the
  403. object the ability to bind and trigger custom named events. Events do not
  404. have to be declared before they are bound, and may take passed arguments.
  405. For example:
  406. </p>
  407. <pre class="runnable">
  408. var object = {};
  409. _.extend(object, Backbone.Events);
  410. object.bind("alert", function(msg) {
  411. alert("Triggered " + msg);
  412. });
  413. object.trigger("alert", "an event");
  414. </pre>
  415. <p id="Events-bind">
  416. <b class="header">bind</b><code>object.bind(event, callback, [context])</code>
  417. <br />
  418. Bind a <b>callback</b> function to an object. The callback will be invoked
  419. whenever the <b>event</b> (specified by an arbitrary string identifier) is fired.
  420. If you have a large number of different events on a page, the convention is to use colons to
  421. namespace them: <tt>"poll:start"</tt>, or <tt>"change:selection"</tt>
  422. </p>
  423. <p>
  424. To supply a <b>context</b> value for <tt>this</tt> when the callback is invoked,
  425. pass the optional third argument: <tt>model.bind('change', this.render, this)</tt>
  426. </p>
  427. <p>
  428. Callbacks bound to the special
  429. <tt>"all"</tt> event will be triggered when any event occurs, and are passed
  430. the name of the event as the first argument. For example, to proxy all events
  431. from one object to another:
  432. </p>
  433. <pre>
  434. proxy.bind("all", function(eventName) {
  435. object.trigger(eventName);
  436. });
  437. </pre>
  438. <p id="Events-unbind">
  439. <b class="header">unbind</b><code>object.unbind([event], [callback])</code>
  440. <br />
  441. Remove a previously-bound <b>callback</b> function from an object. If no
  442. callback is specified, all callbacks for the <b>event</b> will be
  443. removed. If no event is specified, <i>all</i> event callbacks on the object
  444. will be removed.
  445. </p>
  446. <pre>
  447. object.unbind("change", onChange); // Removes just the onChange callback.
  448. object.unbind("change"); // Removes all "change" callbacks.
  449. object.unbind(); // Removes all callbacks on object.
  450. </pre>
  451. <p id="Events-trigger">
  452. <b class="header">trigger</b><code>object.trigger(event, [*args])</code>
  453. <br />
  454. Trigger callbacks for the given <b>event</b>. Subsequent arguments to
  455. <b>trigger</b> will be passed along to the event callbacks.
  456. </p>
  457. <h2 id="Model">Backbone.Model</h2>
  458. <p>
  459. <b>Models</b> are the heart of any JavaScript application, containing
  460. the interactive data as well as a large part of the logic surrounding it:
  461. conversions, validations, computed properties, and access control. You
  462. extend <b>Backbone.Model</b> with your domain-specific methods, and
  463. <b>Model</b> provides a basic set of functionality for managing changes.
  464. </p>
  465. <p>
  466. The following is a contrived example, but it demonstrates defining a model
  467. with a custom method, setting an attribute, and firing an event keyed
  468. to changes in that specific attribute.
  469. After running this code once, <tt>sidebar</tt> will be
  470. available in your browser's console, so you can play around with it.
  471. </p>
  472. <pre class="runnable">
  473. var Sidebar = Backbone.Model.extend({
  474. promptColor: function() {
  475. var cssColor = prompt("Please enter a CSS color:");
  476. this.set({color: cssColor});
  477. }
  478. });
  479. window.sidebar = new Sidebar;
  480. sidebar.bind('change:color', function(model, color) {
  481. $('#sidebar').css({background: color});
  482. });
  483. sidebar.set({color: 'white'});
  484. sidebar.promptColor();
  485. </pre>
  486. <p id="Model-extend">
  487. <b class="header">extend</b><code>Backbone.Model.extend(properties, [classProperties])</code>
  488. <br />
  489. To create a <b>Model</b> class of your own, you extend <b>Backbone.Model</b>
  490. and provide instance <b>properties</b>, as well as optional
  491. <b>classProperties</b> to be attached directly to the constructor function.
  492. </p>
  493. <p>
  494. <b>extend</b> correctly sets up the prototype chain, so subclasses created
  495. with <b>extend</b> can be further extended and subclassed as far as you like.
  496. </p>
  497. <pre>
  498. var Note = Backbone.Model.extend({
  499. initialize: function() { ... },
  500. author: function() { ... },
  501. coordinates: function() { ... },
  502. allowedToEdit: function(account) {
  503. return true;
  504. }
  505. });
  506. var PrivateNote = Note.extend({
  507. allowedToEdit: function(account) {
  508. return account.owns(this);
  509. }
  510. });
  511. </pre>
  512. <p class="warning">
  513. Brief aside on <tt>super</tt>: JavaScript does not provide
  514. a simple way to call super &mdash; the function of the same name defined
  515. higher on the prototype chain. If you override a core function like
  516. <tt>set</tt>, or <tt>save</tt>, and you want to invoke the
  517. parent object's implementation, you'll have to explicitly call it, along these lines:
  518. </p>
  519. <pre>
  520. var Note = Backbone.Model.extend({
  521. set: function(attributes, options) {
  522. Backbone.Model.prototype.set.call(this, attributes, options);
  523. ...
  524. }
  525. });
  526. </pre>
  527. <p id="Model-constructor">
  528. <b class="header">constructor / initialize</b><code>new Model([attributes])</code>
  529. <br />
  530. When creating an instance of a model, you can pass in the initial values
  531. of the <b>attributes</b>, which will be <a href="#Model-set">set</a> on the
  532. model. If you define an <b>initialize</b> function, it will be invoked when
  533. the model is created.
  534. </p>
  535. <pre>
  536. new Book({
  537. title: "One Thousand and One Nights",
  538. author: "Scheherazade"
  539. });
  540. </pre>
  541. <p id="Model-get">
  542. <b class="header">get</b><code>model.get(attribute)</code>
  543. <br />
  544. Get the current value of an attribute from the model. For example:
  545. <tt>note.get("title")</tt>
  546. </p>
  547. <p id="Model-set">
  548. <b class="header">set</b><code>model.set(attributes, [options])</code>
  549. <br />
  550. Set a hash of attributes (one or many) on the model. If any of the attributes
  551. change the models state, a <tt>"change"</tt> event will be triggered, unless
  552. <tt>{silent: true}</tt> is passed as an option. Change events for specific
  553. attributes are also triggered, and you can bind to those as well, for example:
  554. <tt>change:title</tt>, and <tt>change:content</tt>.
  555. </p>
  556. <pre>
  557. note.set({title: "October 12", content: "Lorem Ipsum Dolor Sit Amet..."});
  558. </pre>
  559. <p>
  560. If the model has a <a href="#Model-validate">validate</a> method,
  561. it will be validated before the attributes are set, no changes will
  562. occur if the validation fails, and <b>set</b> will return <tt>false</tt>.
  563. You may also pass an <tt>error</tt>
  564. callback in the options, which will be invoked instead of triggering an
  565. <tt>"error"</tt> event, should validation fail.
  566. </p>
  567. <p id="Model-escape">
  568. <b class="header">escape</b><code>model.escape(attribute)</code>
  569. <br />
  570. Similar to <a href="#Model-get">get</a>, but returns the HTML-escaped version
  571. of a model's attribute. If you're interpolating data from the model into
  572. HTML, using <b>escape</b> to retrieve attributes will prevent
  573. <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">XSS</a> attacks.
  574. </p>
  575. <pre class="runnable">
  576. var hacker = new Backbone.Model({
  577. name: "&lt;script&gt;alert('xss')&lt;/script&gt;"
  578. });
  579. alert(hacker.escape('name'));
  580. </pre>
  581. <p id="Model-has">
  582. <b class="header">has</b><code>model.has(attribute)</code>
  583. <br />
  584. Returns <tt>true</tt> if the attribute is set to a non-null or non-undefined
  585. value.
  586. </p>
  587. <pre>
  588. if (note.has("title")) {
  589. ...
  590. }
  591. </pre>
  592. <p id="Model-unset">
  593. <b class="header">unset</b><code>model.unset(attribute, [options])</code>
  594. <br />
  595. Remove an attribute by deleting it from the internal attributes hash.
  596. Fires a <tt>"change"</tt> event unless <tt>silent</tt> is passed as an option.
  597. </p>
  598. <p id="Model-clear">
  599. <b class="header">clear</b><code>model.clear([options])</code>
  600. <br />
  601. Removes all attributes from the model. Fires a <tt>"change"</tt> event unless
  602. <tt>silent</tt> is passed as an option.
  603. </p>
  604. <p id="Model-id">
  605. <b class="header">id</b><code>model.id</code>
  606. <br />
  607. A special property of models, the <b>id</b> is an arbitrary string
  608. (integer id or UUID). If you set the <b>id</b> in the
  609. attributes hash, it will be copied onto the model as a direct property.
  610. Models can be retrieved by id from collections, and the id is used to generate
  611. model URLs by default.
  612. </p>
  613. <p id="Model-cid">
  614. <b class="header">cid</b><code>model.cid</code>
  615. <br />
  616. A special property of models, the <b>cid</b> or client id is a unique identifier
  617. automatically assigned to all models when they're first created. Client ids
  618. are handy when the model has not yet been saved to the server, and does not
  619. yet have its eventual true <b>id</b>, but already needs to be visible in the UI.
  620. Client ids take the form: <tt>c1, c2, c3 ...</tt>
  621. </p>
  622. <p id="Model-attributes">
  623. <b class="header">attributes</b><code>model.attributes</code>
  624. <br />
  625. The <b>attributes</b> property is the internal hash containing the model's
  626. state. Please use <a href="#Model-set">set</a> to update the attributes instead of modifying
  627. them directly. If you'd like to retrieve and munge a copy of the model's
  628. attributes, use <a href="#Model-toJSON">toJSON</a> instead.
  629. </p>
  630. <p id="Model-defaults">
  631. <b class="header">defaults</b><code>model.defaults or model.defaults()</code>
  632. <br />
  633. The <b>defaults</b> hash (or function) can be used to specify the default
  634. attributes for your model. When creating an instance of the model,
  635. any unspecified attributes will be set to their default value.
  636. </p>
  637. <pre class="runnable">
  638. var Meal = Backbone.Model.extend({
  639. defaults: {
  640. "appetizer": "caesar salad",
  641. "entree": "ravioli",
  642. "dessert": "cheesecake"
  643. }
  644. });
  645. alert("Dessert will be " + (new Meal).get('dessert'));
  646. </pre>
  647. <p class="warning">
  648. Remember that in JavaScript, objects are passed by reference, so if you
  649. include an object as a default value, it will be shared among all instances.
  650. </p>
  651. <p id="Model-toJSON">
  652. <b class="header">toJSON</b><code>model.toJSON()</code>
  653. <br />
  654. Return a copy of the model's <a href="#Model-attributes">attributes</a> for JSON stringification.
  655. This can be used for persistence, serialization, or for augmentation before
  656. being handed off to a view. The name of this method is a bit confusing, as
  657. it doesn't actually return a JSON string &mdash; but I'm afraid that it's
  658. the way that the <a href="https://developer.mozilla.org/en/JSON#toJSON()_method">JavaScript API for <b>JSON.stringify</b> works</a>.
  659. </p>
  660. <pre class="runnable">
  661. var artist = new Backbone.Model({
  662. firstName: "Wassily",
  663. lastName: "Kandinsky"
  664. });
  665. artist.set({birthday: "December 16, 1866"});
  666. alert(JSON.stringify(artist));
  667. </pre>
  668. <p id="Model-fetch">
  669. <b class="header">fetch</b><code>model.fetch([options])</code>
  670. <br />
  671. Resets the model's state from the server. Useful if the model has never
  672. been populated with data, or if you'd like to ensure that you have the
  673. latest server state. A <tt>"change"</tt> event will be triggered if the
  674. server's state differs from the current attributes. Accepts
  675. <tt>success</tt> and <tt>error</tt> callbacks in the options hash, which
  676. are passed <tt>(model, response)</tt> as arguments.
  677. </p>
  678. <pre>
  679. // Poll every 10 seconds to keep the channel model up-to-date.
  680. setInterval(function() {
  681. channel.fetch();
  682. }, 10000);
  683. </pre>
  684. <p id="Model-save">
  685. <b class="header">save</b><code>model.save([attributes], [options])</code>
  686. <br />
  687. Save a model to your database (or alternative persistence layer),
  688. by delegating to <a href="#Sync">Backbone.sync</a>. The <b>attributes</b>
  689. hash (as in <a href="#Model-set">set</a>) should contain the attributes
  690. you'd like to change -- keys that aren't mentioned won't be altered.
  691. If the model has a <a href="#Model-validate">validate</a>
  692. method, and validation fails, the model will not be saved. If the model
  693. <a href="#Model-isNew">isNew</a>, the save will be a <tt>"create"</tt>
  694. (HTTP <tt>POST</tt>), if the model already
  695. exists on the server, the save will be an <tt>"update"</tt> (HTTP <tt>PUT</tt>).
  696. </p>
  697. <p>
  698. In the following example, notice how our overridden version
  699. of <tt>Backbone.sync</tt> receives a <tt>"create"</tt> request
  700. the first time the model is saved and an <tt>"update"</tt>
  701. request the second time.
  702. </p>
  703. <pre class="runnable">
  704. Backbone.sync = function(method, model) {
  705. alert(method + ": " + JSON.stringify(model));
  706. model.id = 1;
  707. };
  708. var book = new Backbone.Model({
  709. title: "The Rough Riders",
  710. author: "Theodore Roosevelt"
  711. });
  712. book.save();
  713. book.save({author: "Teddy"});
  714. </pre>
  715. <p>
  716. <b>save</b> accepts <tt>success</tt> and <tt>error</tt> callbacks in the
  717. options hash, which are passed <tt>(model, response)</tt> as arguments.
  718. The <tt>error</tt> callback will also be invoked if the model has a
  719. <tt>validate</tt> method, and validation fails. If a server-side
  720. validation fails, return a non-<tt>200</tt> HTTP response code, along with
  721. an error response in text or JSON.
  722. </p>
  723. <pre>
  724. book.save({author: "F.D.R."}, {error: function(){ ... }});
  725. </pre>
  726. <p id="Model-destroy">
  727. <b class="header">destroy</b><code>model.destroy([options])</code>
  728. <br />
  729. Destroys the model on the server by delegating an HTTP <tt>DELETE</tt>
  730. request to <a href="#Sync">Backbone.sync</a>. Accepts
  731. <tt>success</tt> and <tt>error</tt> callbacks in the options hash.
  732. Triggers a <tt>"destroy"</tt> event on the model, which will bubble up
  733. through any collections that contain it.
  734. </p>
  735. <pre>
  736. book.destroy({success: function(model, response) {
  737. ...
  738. }});
  739. </pre>
  740. <p id="Model-validate">
  741. <b class="header">validate</b><code>model.validate(attributes)</code>
  742. <br />
  743. This method is left undefined, and you're encouraged to override it with
  744. your custom validation logic, if you have any that can be performed
  745. in JavaScript. <b>validate</b> is called before <tt>set</tt> and
  746. <tt>save</tt>, and is passed the attributes that are about to be updated.
  747. If the model and attributes are valid, don't return anything from <b>validate</b>;
  748. if the attributes are invalid, return an error of your choosing. It
  749. can be as simple as a string error message to be displayed, or a complete
  750. error object that describes the error programmatically. <tt>set</tt> and
  751. <tt>save</tt> will not continue if <b>validate</b> returns an error.
  752. Failed validations trigger an <tt>"error"</tt> event.
  753. </p>
  754. <pre class="runnable">
  755. var Chapter = Backbone.Model.extend({
  756. validate: function(attrs) {
  757. if (attrs.end < attrs.start) {
  758. return "can't end before it starts";
  759. }
  760. }
  761. });
  762. var one = new Chapter({
  763. title : "Chapter One: The Beginning"
  764. });
  765. one.bind("error", function(model, error) {
  766. alert(model.get("title") + " " + error);
  767. });
  768. one.set({
  769. start: 15,
  770. end: 10
  771. });
  772. </pre>
  773. <p>
  774. <tt>"error"</tt> events are useful for providing coarse-grained error
  775. messages at the model or collection level, but if you have a specific view
  776. that can better handle the error, you may override and suppress the event
  777. by passing an <tt>error</tt> callback directly:
  778. </p>
  779. <pre>
  780. account.set({access: "unlimited"}, {
  781. error: function(model, error) {
  782. alert(error);
  783. }
  784. });
  785. </pre>
  786. <p id="Model-url">
  787. <b class="header">url</b><code>model.url()</code>
  788. <br />
  789. Returns the relative URL where the model's resource would be located on
  790. the server. If your models are located somewhere else, override this method
  791. with the correct logic. Generates URLs of the form: <tt>"/[collection.url]/[id]"</tt>,
  792. falling back to <tt>"/[urlRoot]/id"</tt> if the model is not part of a collection.
  793. </p>
  794. <p>
  795. Delegates to <a href="#Collection-url">Collection#url</a> to generate the
  796. URL, so make sure that you have it defined, or a <a href="#Model-urlRoot">urlRoot</a>
  797. property, if all models of this class share a common root URL.
  798. A model with an id of <tt>101</tt>, stored in a
  799. <a href="#Collection">Backbone.Collection</a> with a <tt>url</tt> of <tt>"/documents/7/notes"</tt>,
  800. would have this URL: <tt>"/documents/7/notes/101"</tt>
  801. </p>
  802. <p id="Model-urlRoot">
  803. <b class="header">urlRoot</b><code>model.urlRoot</code>
  804. <br />
  805. Specify a <tt>urlRoot</tt> if you're using a model outside of a collection,
  806. to enable the default <a href="#Model-url">url</a> function to generate
  807. URLs based on the model id. <tt>"/[urlRoot]/id"</tt>
  808. </p>
  809. <pre class="runnable">
  810. var Book = Backbone.Model.extend({urlRoot : '/books'});
  811. var solaris = new Book({id: "1083-lem-solaris"});
  812. alert(solaris.url());
  813. </pre>
  814. <p id="Model-parse">
  815. <b class="header">parse</b><code>model.parse(response)</code>
  816. <br />
  817. <b>parse</b> is called whenever a model's data is returned by the
  818. server, in <a href="#Model-fetch">fetch</a>, and <a href="#Model-save">save</a>.
  819. The function is passed the raw <tt>response</tt> object, and should return
  820. the attributes hash to be <a href="#Model-set">set</a> on the model. The
  821. default implementation is a no-op, simply passing through the JSON response.
  822. Override this if you need to work with a preexisting API, or better namespace
  823. your responses.
  824. </p>
  825. <p>
  826. If you're working with a Rails backend, you'll notice that Rails' default
  827. <tt>to_json</tt> implementation includes a model's attributes under a
  828. namespace. To disable this behavior for seamless Backbone integration, set:
  829. </p>
  830. <pre>
  831. ActiveRecord::Base.include_root_in_json = false
  832. </pre>
  833. <p id="Model-clone">
  834. <b class="header">clone</b><code>model.clone()</code>
  835. <br />
  836. Returns a new instance of the model with identical attributes.
  837. </p>
  838. <p id="Model-isNew">
  839. <b class="header">isNew</b><code>model.isNew()</code>
  840. <br />
  841. Has this model been saved to the server yet? If the model does not yet have
  842. an <tt>id</tt>, it is considered to be new.
  843. </p>
  844. <p id="Model-change">
  845. <b class="header">change</b><code>model.change()</code>
  846. <br />
  847. Manually trigger the <tt>"change"</tt> event.
  848. If you've been passing <tt>{silent: true}</tt> to the <a href="#Model-set">set</a> function in order to
  849. aggregate rapid changes to a model, you'll want to call <tt>model.change()</tt>
  850. when you're all finished.
  851. </p>
  852. <p id="Model-hasChanged">
  853. <b class="header">hasChanged</b><code>model.hasChanged([attribute])</code>
  854. <br />
  855. Has the model changed since the last <tt>"change"</tt> event? If an <b>attribute</b>
  856. is passed, returns <tt>true</tt> if that specific attribute has changed.
  857. </p>
  858. <p class="warning">
  859. Note that this method, and the following change-related ones,
  860. are only useful during the course of a <tt>"change"</tt> event.
  861. </p>
  862. <pre>
  863. book.bind("change", function() {
  864. if (book.hasChanged("title")) {
  865. ...
  866. }
  867. });
  868. </pre>
  869. <p id="Model-changedAttributes">
  870. <b class="header">changedAttributes</b><code>model.changedAttributes([attributes])</code>
  871. <br />
  872. Retrieve a hash of only the model's attributes that have changed. Optionally,
  873. an external <b>attributes</b> hash can be passed in, returning
  874. the attributes in that hash which differ from the model. This can be used
  875. to figure out which portions of a view should be updated, or what calls
  876. need to be made to sync the changes to the server.
  877. </p>
  878. <p id="Model-previous">
  879. <b class="header">previous</b><code>model.previous(attribute)</code>
  880. <br />
  881. During a <tt>"change"</tt> event, this method can be used to get the
  882. previous value of a changed attribute.
  883. </p>
  884. <pre class="runnable">
  885. var bill = new Backbone.Model({
  886. name: "Bill Smith"
  887. });
  888. bill.bind("change:name", function(model, name) {
  889. alert("Changed name from " + bill.previous("name") + " to " + name);
  890. });
  891. bill.set({name : "Bill Jones"});
  892. </pre>
  893. <p id="Model-previousAttributes">
  894. <b class="header">previousAttributes</b><code>model.previousAttributes()</code>
  895. <br />
  896. Return a copy of the model's previous attributes. Useful for getting a
  897. diff between versions of a model, or getting back to a valid state after
  898. an error occurs.
  899. </p>
  900. <h2 id="Collection">Backbone.Collection</h2>
  901. <p>
  902. Collections are ordered sets of models. You can to bind <tt>"change"</tt> events
  903. to be notified when any model in the collection has been modified,
  904. listen for <tt>"add"</tt> and <tt>"remove"</tt> events, <tt>fetch</tt>
  905. the collection from the server, and use a full suite of
  906. <a href="#Collection-Underscore-Methods">Underscore.js methods</a>.
  907. </p>
  908. <p>
  909. Any event that is triggered on a model in a collection will also be
  910. triggered on the collection directly, for convenience.
  911. This allows you to listen for changes to specific attributes in any
  912. model in a collection, for example:
  913. <tt>Documents.bind("change:selected", ...)</tt>
  914. </p>
  915. <p id="Collection-extend">
  916. <b class="header">extend</b><code>Backbone.Collection.extend(properties, [classProperties])</code>
  917. <br />
  918. To create a <b>Collection</b> class of your own, extend <b>Backbone.Collection</b>,
  919. providing instance <b>properties</b>, as well as optional <b>classProperties</b> to be attached
  920. directly to the collection's constructor function.
  921. </p>
  922. <p id="Collection-model">
  923. <b class="header">model</b><code>collection.model</code>
  924. <br />
  925. Override this property to specify the model class that the collection
  926. contains. If defined, you can pass raw attributes objects (and arrays) to
  927. <a href="#Collection-add">add</a>, <a href="#Collection-create">create</a>,
  928. and <a href="#Collection-reset">reset</a>, and the attributes will be
  929. converted into a model of the proper type.
  930. </p>
  931. <pre>
  932. var Library = Backbone.Collection.extend({
  933. model: Book
  934. });
  935. </pre>
  936. <p id="Collection-constructor">
  937. <b class="header">constructor / initialize</b><code>new Collection([models], [options])</code>
  938. <br />
  939. When creating a Collection, you may choose to pass in the initial array of <b>models</b>.
  940. The collection's <a href="#Collection-comparator">comparator</a> function
  941. may be included as an option. If you define an <b>initialize</b> function, it will be
  942. invoked when the collection is created.
  943. </p>
  944. <pre>
  945. var tabs = new TabSet([tab1, tab2, tab3]);
  946. </pre>
  947. <p id="Collection-models">
  948. <b class="header">models</b><code>collection.models</code>
  949. <br />
  950. Raw access to the JavaScript array of models inside of the collection. Usually you'll
  951. want to use <tt>get</tt>, <tt>at</tt>, or the <b>Underscore methods</b>
  952. to access model objects, but occasionally a direct reference to the array
  953. is desired.
  954. </p>
  955. <p id="Collection-toJSON">
  956. <b class="header">toJSON</b><code>collection.toJSON()</code>
  957. <br />
  958. Return an array containing the attributes hash of each model in the
  959. collection. This can be used to serialize and persist the
  960. collection as a whole. The name of this method is a bit confusing, because
  961. it conforms to
  962. <a href="https://developer.mozilla.org/en/JSON#toJSON()_method">JavaScript's JSON API</a>.
  963. </p>
  964. <pre class="runnable">
  965. var collection = new Backbone.Collection([
  966. {name: "Tim", age: 5},
  967. {name: "Ida", age: 26},
  968. {name: "Rob", age: 55}
  969. ]);
  970. alert(JSON.stringify(collection));
  971. </pre>
  972. <p id="Collection-Underscore-Methods">
  973. <b class="header">Underscore Methods (26)</b>
  974. <br />
  975. Backbone proxies to <b>Underscore.js</b> to provide 26 iteration functions
  976. on <b>Backbone.Collection</b>. They aren't all documented here, but
  977. you can take a look at the Underscore documentation for the full details&hellip;
  978. </p>
  979. <ul>
  980. <li><a href="http://documentcloud.github.com/underscore/#each">forEach (each)</a></li>
  981. <li><a href="http://documentcloud.github.com/underscore/#map">map</a></li>
  982. <li><a href="http://documentcloud.github.com/underscore/#reduce">reduce (foldl, inject)</a></li>
  983. <li><a href="http://documentcloud.github.com/underscore/#reduceRight">reduceRight (foldr)</a></li>
  984. <li><a href="http://documentcloud.github.com/underscore/#detect">find (detect)</a></li>
  985. <li><a href="http://documentcloud.github.com/underscore/#select">filter (select)</a></li>
  986. <li><a href="http://documentcloud.github.com/underscore/#reject">reject</a></li>
  987. <li><a href="http://documentcloud.github.com/underscore/#all">every (all)</a></li>
  988. <li><a href="http://documentcloud.github.com/underscore/#any">some (any)</a></li>
  989. <li><a href="http://documentcloud.github.com/underscore/#include">include</a></li>
  990. <li><a href="http://documentcloud.github.com/underscore/#invoke">invoke</a></li>
  991. <li><a href="http://documentcloud.github.com/underscore/#max">max</a></li>
  992. <li><a href="http://documentcloud.github.com/underscore/#min">min</a></li>
  993. <li><a href="http://documentcloud.github.com/underscore/#sortBy">sortBy</a></li>
  994. <li><a href="http://documentcloud.github.com/underscore/#groupBy">groupBy</a></li>
  995. <li><a href="http://documentcloud.github.com/underscore/#sortedIndex">sortedIndex</a></li>
  996. <li><a href="http://documentcloud.github.com/underscore/#toArray">toArray</a></li>
  997. <li><a href="http://documentcloud.github.com/underscore/#size">size</a></li>
  998. <li><a href="http://documentcloud.github.com/underscore/#first">first</a></li>
  999. <li><a href="http://documentcloud.github.com/underscore/#rest">rest</a></li>
  1000. <li><a href="http://documentcloud.github.com/underscore/#last">last</a></li>
  1001. <li><a href="http://documentcloud.github.com/underscore/#without">without</a></li>
  1002. <li><a href="http://documentcloud.github.com/underscore/#indexOf">indexOf</a></li>
  1003. <li><a href="http://documentcloud.github.com/underscore/#lastIndexOf">lastIndexOf</a></li>
  1004. <li><a href="http://documentcloud.github.com/underscore/#isEmpty">isEmpty</a></li>
  1005. <li><a href="http://documentcloud.github.com/underscore/#chain">chain</a></li>
  1006. </ul>
  1007. <pre>
  1008. Books.each(function(book) {
  1009. book.publish();
  1010. });
  1011. var titles = Books.map(function(book) {
  1012. return book.get("title");
  1013. });
  1014. var publishedBooks = Books.filter(function(book) {
  1015. return book.get("published") === true;
  1016. });
  1017. var alphabetical = Books.sortBy(function(book) {
  1018. return book.author.get("name").toLowerCase();
  1019. });
  1020. </pre>
  1021. <p id="Collection-add">
  1022. <b class="header">add</b><code>collection.add(models, [options])</code>
  1023. <br />
  1024. Add a model (or an array of models) to the collection. Fires an <tt>"add"</tt>
  1025. event, which you can pass <tt>{silent: true}</tt> to suppress. If a
  1026. <a href="#Collection-model">model</a> property is defined, you may also pass
  1027. raw attributes objects, and have them be vivified as instances of the model.
  1028. Pass <tt>{at: index}</tt> to splice the model into the collection at the
  1029. specified <tt>index</tt>.
  1030. </p>
  1031. <pre class="runnable">
  1032. var ships = new Backbone.Collection;
  1033. ships.bind("add", function(ship) {
  1034. alert("Ahoy " + ship.get("name") + "!");
  1035. });
  1036. ships.add([
  1037. {name: "Flying Dutchman"},
  1038. {name: "Black Pearl"}
  1039. ]);
  1040. </pre>
  1041. <p id="Collection-remove">
  1042. <b class="header">remove</b><code>collection.remove(models, [options])</code>
  1043. <br />
  1044. Remove a model (or an array of models) from the collection. Fires a
  1045. <tt>"remove"</tt> event, which you can use <tt>silent</tt>
  1046. to suppress.
  1047. </p>
  1048. <p id="Collection-get">
  1049. <b class="header">get</b><code>collection.get(id)</code>
  1050. <br />
  1051. Get a model from a collection, specified by <b>id</b>.
  1052. </p>
  1053. <pre>
  1054. var book = Library.get(110);
  1055. </pre>
  1056. <p id="Collection-getByCid">
  1057. <b class="header">getByCid</b><code>collection.getByCid(cid)</code>
  1058. <br />
  1059. Get a model from a collection, specified by client id. The client id
  1060. is the <tt>.cid</tt> property of the model, automatically assigned whenever
  1061. a model is created. Useful for models which have not yet been saved to
  1062. the server, and do not yet have true ids.
  1063. </p>
  1064. <p id="Collection-at">
  1065. <b class="header">at</b><code>collection.at(index)</code>
  1066. <br />
  1067. Get a model from a collection, specified by index. Useful if your collection
  1068. is sorted, and if your collection isn't sorted, <b>at</b> will still
  1069. retrieve models in insertion order.
  1070. </p>
  1071. <p id="Collection-length">
  1072. <b class="header">length</b><code>collection.length</code>
  1073. <br />
  1074. Like an array, a Collection maintains a <tt>length</tt> property, counting
  1075. the number of models it contains.
  1076. </p>
  1077. <p id="Collection-comparator">
  1078. <b class="header">comparator</b><code>collection.comparator</code>
  1079. <br />
  1080. By default there is no <b>comparator</b> function on a collection.
  1081. If you define a comparator, it will be used to maintain
  1082. the collection in sorted order. This means that as models are added,
  1083. they are inserted at the correct index in <tt>collection.models</tt>.
  1084. Comparator functions take a model and return a numeric or string value
  1085. by which the model should be ordered relative to others.
  1086. </p>
  1087. <p>
  1088. Note how even though all of the chapters in this example are added backwards,
  1089. they come out in the proper order:
  1090. </p>
  1091. <pre class="runnable">
  1092. var Chapter = Backbone.Model;
  1093. var chapters = new Backbone.Collection;
  1094. chapters.comparator = function(chapter) {
  1095. return chapter.get("page");
  1096. };
  1097. chapters.add(new Chapter({page: 9, title: "The End"}));
  1098. chapters.add(new Chapter({page: 5, title: "The Middle"}));
  1099. chapters.add(new Chapter({page: 1, title: "The Beginning"}));
  1100. alert(chapters.pluck('title'));
  1101. </pre>
  1102. <p class="warning">
  1103. Brief aside: This comparator function is different than JavaScript's regular
  1104. "sort", which must return <tt>0</tt>, <tt>1</tt>, or <tt>-1</tt>,
  1105. and is more similar to a <tt>sortBy</tt> &mdash; a much nicer API.
  1106. </p>
  1107. <p id="Collection-sort">
  1108. <b class="header">sort</b><code>collection.sort([options])</code>
  1109. <br />
  1110. Force a collection to re-sort itself. You don't need to call this under
  1111. normal circumstances, as a collection with a <a href="#Collection-comparator">comparator</a> function
  1112. will maintain itself in proper sort order at all times. Calling <b>sort</b>
  1113. triggers the collection's <tt>"reset"</tt> event, unless silenced by passing
  1114. <tt>{silent: true}</tt>
  1115. </p>
  1116. <p id="Collection-pluck">
  1117. <b class="header">pluck</b><code>collection.pluck(attribute)</code>
  1118. <br />
  1119. Pluck an attribute from each model in the collection. Equivalent to calling
  1120. <tt>map</tt>, and returning a single attribute from the iterator.
  1121. </p>
  1122. <pre class="runnable">
  1123. var stooges = new Backbone.Collection([
  1124. new Backbone.Model({name: "Curly"}),
  1125. new Backbone.Model({name: "Larry"}),
  1126. new Backbone.Model({name: "Moe"})
  1127. ]);
  1128. var names = stooges.pluck("name");
  1129. alert(JSON.stringify(names));
  1130. </pre>
  1131. <p id="Collection-url">
  1132. <b class="header">url</b><code>collection.url or collection.url()</code>
  1133. <br />
  1134. Set the <b>url</b> property (or function) on a collection to reference
  1135. its location on the server. Models within the collection will use <b>url</b>
  1136. to construct URLs of their own.
  1137. </p>
  1138. <pre>
  1139. var Notes = Backbone.Collection.extend({
  1140. url: '/notes'
  1141. });
  1142. // Or, something more sophisticated:
  1143. var Notes = Backbone.Collection.extend({
  1144. url: function() {
  1145. return this.document.url() + '/notes';
  1146. }
  1147. });
  1148. </pre>
  1149. <p id="Collection-parse">
  1150. <b class="header">parse</b><code>collection.parse(response)</code>
  1151. <br />
  1152. <b>parse</b> is called by Backbone whenever a collection's models are
  1153. returned by the server, in <a href="#Collection-fetch">fetch</a>.
  1154. The function is passed the raw <tt>response</tt> object, and should return
  1155. the array of model attributes to be <a href="#Collection-add">added</a>
  1156. to the collection. The default implementation is a no-op, simply passing
  1157. through the JSON response. Override this if you need to work with a
  1158. preexisting API, or better namespace your responses.
  1159. </p>
  1160. <pre>
  1161. var Tweets = Backbone.Collection.extend({
  1162. // The Twitter Search API returns tweets under "results".
  1163. parse: function(response) {
  1164. return response.results;
  1165. }
  1166. });
  1167. </pre>
  1168. <p id="Collection-fetch">
  1169. <b class="header">fetch</b><code>collection.fetch([options])</code>
  1170. <br />
  1171. Fetch the default set of models for this collection from the server,
  1172. resetting the collection when they arrive. The <b>options</b> hash takes
  1173. <tt>success</tt> and <tt>error</tt>
  1174. callbacks which will be passed <tt>(collection, response)</tt> as arguments.
  1175. When the model data returns from the server, the collection will
  1176. <a href="#Collection-reset">reset</a>.
  1177. Delegates to <a href="#Sync">Backbone.sync</a>
  1178. under the covers, for custom persistence strategies.
  1179. The server handler for <b>fetch</b> requests should return a JSON array of
  1180. models.
  1181. </p>
  1182. <pre class="runnable">
  1183. Backbone.sync = function(method, model) {
  1184. alert(method + ": " + model.url);
  1185. };
  1186. var Accounts = new Backbone.Collection;
  1187. Accounts.url = '/accounts';
  1188. Accounts.fetch();
  1189. </pre>
  1190. <p>
  1191. If you'd like to add the incoming models to the current collection, instead
  1192. of replacing the collection's contents, pass <tt>{add: true}</tt> as an
  1193. option to <b>fetch</b>.
  1194. </p>
  1195. <p>
  1196. <b>jQuery.ajax</b> options can also be passed directly as <b>fe

Large files files are truncated, but you can click here to view the full file