我有两种模式:公司和人。公司有很多人,一个人属于公司。我试图在UI中表示这一点。我很难弄清楚如何将关系数据绑定到视图。
这是我的人物模型
App.Person = DS.Model.extend({
firstName: DS.attr('string'),
lastName: DS.attr('string'),
city: DS.attr('string'),
state: DS.attr('string'),
email: DS.attr('string'),
company: DS.belongsTo('company'),
fullName: function() {
return this.get('firstName') + ' ' + this.get('lastName');
}.property('firstName', 'lastName')
});
这是我的公司模型
App.Company = DS.Model.extend({
name: DS.attr('string'),
people: DS.hasMany('person')
});
这是我的路线
App.Router.map(function() {
this.resource('people', function() {
this.resource('person', { path: ':person_id'});
this.route('new');
});
});
App.PersonRoute = Ember.Route.extend({
model: function(params) {
return this.store.find('person', params.person_id);
}
});
这是我的观点
<script type="text/x-handlebars" data-template-name='show/_edit'>
<div>
<form role="form">
<div class="form-group">
<label for="firstName">First Name</label>
{{input type="text" value=firstName class="form-control" id="firstName" placeholder="First Name"}}
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
{{input type="text" value=lastName class="form-control" id="lastName" placeholder="Last Name"}}
</div>
<div class="form-group">
<label for="email">Email address</label>
{{input type="email" value=email class="form-control" id="email" placeholder="Email"}}
</div>
<div class="form-group">
<label for="city">City</label>
{{input type="text" value=city class="form-control" id="city" placeholder="City"}}
</div>
<div class="form-group">
<label for="state">State</label>
{{input type="text" value=state class="form-control" id="state" placeholder="state"}}
</div>
<div class="form-group">
<label for="company">Company</label>
<span>{{company.name}}</span>
</div>
<button type="submit" class="btn btn-default" {{action 'doneEditing'}}>Done</button>
</form>
</div>
但是永远不会向companies/2
发出请求。我是否需要在路由器中返回此人及其公司的RSVP哈希以适应这种情况?
以下是/people/
https://gist.github.com/anonymous/7632294
答案 0 :(得分:0)
如果您使用RESTAdapter
,则需要将company_id: "1"
更改为company: "1"
。