2014-01-08 44 views
0

我剛剛開始使用ember,並未使用ember數據。我有一些代碼liek這個:用於將模型對象的所有屬性打包成帖子或將其放入的ember快捷方式

Hex.Location = Ember.Object.extend({ 
    id: null, 
    name:null, 
    city:null, 
    state:null, 
    zip_code:null, 
    is_enabled:null, 
    tag_line:null, 
    longitude:null, 
    latitude:null, 
    create: function(){ 
     return Ember.$.post("/arc/v1/api/locations", {name: this.name, website: this.website, latitude:this.latitude, longitude: this.longitude, street: this.street, city: this.city, 
      state:this.state, zip_code:this.zip_code, is_enabled: this.is_enabled, is_launch_set: this.is_launch_set, phone:this.phone });// , function(data) { 

但是,這顯然看起來非常浪費在輸入所有的屬性。有沒有捷徑?我已經命名一切,因爲它應該在電線和我的Javascript對象?

THX

回答

相關問題