我对Ember来说比较新。
我正在尝试保存多维记录,以便我可以轻松地设置observable来适当填充一些选择菜单。
我尝试使用方括号,圆括号和点符号来尝试保存记录,但我无法弄清楚如何正确设置它。
这就是我的尝试
import Ember from 'ember';
export default Ember.ObjectController.extend({
actions: {
publishCity: function() {
var newCity = this.store.createRecord('city', {
city.country: this.get('country'),
city.province: this.get('province'),
city.city : this.get('city'),
});
newCity.save();
}
}
});