我有两个模型'Author'和'Publisher'(Rails),一个发布者有一个作者/作者属于发布者的关系。
我正确设置了 Ember 模型——JS Fiddle——并且当我手动推入商店时关联工作。但是在请求 /publishers 索引时只创建发布者记录。
我尝试了几种类型的 JSON 响应:
有作者的出版商
{
"publishers": [
{
"id": 1,
"name": "Test P 1",
"author": 1
}
],
"author": {
"id": 1,
"name": "Test A 1",
"publisher": 1
}
}
有作者的出版商
{
"publishers": [
{
"id": 1,
"name": "Test P 1",
"author": 1
}
],
"authors": [{
"id": 1,
"name": "Test A 1",
"publisher": 1
}]
}
嵌入作者的出版商
{
"publishers": [
{
"id": 1,
"name": "Test P 1",
"author": {
"id": 1
"name": "Test A 1"
}
}
]
}
谢谢你的帮助!