0
var Song = Backbone.Model.extend({
    defaults: {
        name: "Not specified",
        artist: "Not specified"
    },
    initialize: function () {
        document.write("Music is the answer");
    },
    url:function(){
       return '/home/';
    }
});

var Album = Backbone.Collection.extend({
    model: Song
});

var song1 = new Song({
    name: "How Bizarre",
    artist: "OMC"
});
var song2 = new Song({
    name: "Sexual Healing",
    artist: "Marvin Gaye"
});
var song3 = new Song({
    name: "Talk It Over In Bed",
    artist: "OMC"
});

var myAlbum = new Album([song1, song2, song3]);
document.write(myAlbum.models); // [song1, song2, song3]
  1. 我如何将myAlbum.models对象发送到我的服务。
  2. 我如何提醒我的网址
4

2 回答 2

0

to send Data to the Backend do follwing:

myAlbum.save();

it`s sending a POST (if its new data) or a PUT (if model has id) request to the server.

for more: http://documentcloud.github.com/backbone/#Model-save

于 2012-06-19T13:16:10.727 回答
0

也许这篇文章可以帮助你。

于 2012-06-19T10:36:04.487 回答