- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试存储具有belongsTo 关联的记录,但关联的ID 始终为空:
客户模型
Docket.Customer = DS.Model.extend({
name: DS.attr('string'),
initial: DS.attr('string'),
description: DS.attr('string'),
number: DS.attr('string'),
archived: DS.attr('boolean'),
projects: DS.hasMany('project',{ async: true })
});
项目模型
Docket.Project = DS.Model.extend({
name: DS.attr('string'),
description: DS.attr('string'),
number: DS.attr('string'),
archived: DS.attr('boolean'),
customer: DS.belongsTo('customer')
});
在 ProjectsController 中保存操作
var _this = this;
// create new record
var project = this.store.createRecord('project', this.getProperties('name','number', 'description', 'archived'));
// add customer with id 22 to project
this.store.find('customer', 22).then(function(customer) {
project.set('customer', customer);
});
// save if validation passes, otherwise show errors
project.save().then(function(){
_this.resetAndCloseForm(form);
}, function(response){
_this.set('errors',response.errors);
});
发送到服务器的 json 始终是这样的:
archived: false
customer_id: null
description: null
name: "foobar"
number: null
我想在选择框中选择项目的客户。是否有任何智能方法可以获取所选客户作为记录,或者我是否必须通过 ID 加载它?
{{view Ember.Select
viewName="select"
contentBinding="customers"
optionLabelPath="content.name"
optionValuePath="content.id"
prompt="Pick a customer:"
selectionBinding="selectedCustomer"
}}
最佳答案
这是旧版本的 ember 数据,还是您有自定义序列化程序,因为它应该在没有 _id
的情况下发送它。尝试升级或显示您的序列化器。
并且您在解决查找之前保存。
// add customer with id 22 to project
this.store.find('customer', 22).then(function(customer) {
project.set('customer', customer);
// save if validation passes, otherwise show errors
project.save().then(function(){
_this.resetAndCloseForm(form);
}, function(response){
_this.set('errors',response.errors);
});
});
看起来 selectedCustomer
有记录。
// create new record
var project = this.store.createRecord('project', this.getProperties('name','number', 'description', 'archived'));
project.set('customer', this.get('selectedCustomer'));
// save if validation passes, otherwise show errors
project.save().then(function(){
_this.resetAndCloseForm(form);
}, function(response){
_this.set('errors',response.errors);
});
您还可以设置optionValuePath='content'
关于ember.js - createRecord 与belongsTo 关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20499008/
class Owner { static hasMany = Dog } class Sitter { static hasMany = Dog } class Dog { s
如果我有以下型号: module.exports = function (sequelize, DataTypes) { var WorkingCalendar = sequelize.defin
我有这样的问题 - 有 3 个表,例如 Clients、Hats、Tshirts。每个客户都有一顶帽子和一件 T 恤关系。我是这样做的: ` ClientsModel: var $name
我使用 Laravel 5.6,我有 3 个模型: 地区 商店 商家 区域有很多商店: public function stores() { return $this->hasMany('Be
我已经在几个地方看到过要“远离”这一点,但是唉 - 这就是我的数据库的构建方式: class Album extends Eloquent { // default connection
如何制作域类以在 Grails 中创建“共享”数据但不“属于”另一个数据的表?例如,我想制作 2 张 table : 具有 2 个主要列的人员表 名称 - 技能 拉里 - 跳跃,大笑,拳击 curl
当子类可能属于父类中的两个属性之一(但不能同时属于两者)时,我无法理解 Grails 中的 belongsTo - hasMany 关系的概念。 例如: class Store { Integ
我创建了Child域,并为其添加了2个父级。我声明为一位 parent 。我在belongsTo约束的帮助下声明了另一个 parent 。 打包多个 parent class Child {
场景一: 我有两个类: 发表 : class Post { String content Date dateCreated static constraints = { content(blank:
我以为答案是很基本的,但是我对Grails还是很陌生,并且在其他任何地方都很难找到我的问题的答案。 基本上,我有两个域类,用户和事件。事件与用户具有“belongsTo”关系,而用户与事件具有“has
要在 Grails 中创建一对一关系,我可以执行以下操作: class Person { static hasOne = [address: Address] } 在这种情况下,地址表具有其人
有人告诉我,要完成将 $belongsTo 映射到非主键,我会将外键设置为 false 并由另一个论坛上的某人(实际上是 IRC)设置条件。但是,我不认为我这样做是正确的。下面是我正在尝试的 $bel
所以我有这个模型,“票”,其中包含(除其他外)“category_id”列。 为简化起见,以下是我的数据的外观: 门票表 ID 标题 类别编号 1 问题 #1 2 2 问题#2 4 3 问题 #3 1
class Batch extends Eloquent { public function coupons() { return $this->hasMany('Coupon
谁能向我解释在ManyToMany关系中belongsTo的作用是什么?对于OneToOne关系,这很明显:如果删除了“OneToMany”侧(主表)中的记录,则相应的“ManyToOne”(子表)也
我有一些模型正在尝试关联。 一种模型是 Item,一种是 Slide,另一种是 Asset。 项目下方有多个幻灯片。 Assets 基本上是已上传的文件(图像、mp3 等),幻灯片是显示 Assets
我正在尝试保存属于另一个模型的记录。然而,我得到一个错误,指出外键丢失。 CakePHP 文档显示了此工作的示例,但我无法让它工作。 这是表格: echo $this->Form->creat
好的必填信息: DEBUG: ------------------------------- DEBUG: Ember : 1.3.1 DEBUG: Ember Data : 1.0.0-b
我有一个顾问表,它有一个链接到“specilaties”表的外键“specialty_id”。 class Consultant extends AppModel { public $belo
我正在处理 belongsTo 关系,但需要知道如何指定要关联的字段。 我有一个报告和一个汽车表。 汽车表以 ID 字段作为 UI。当对汽车进行报告时,我希望从列表中删除该汽车,以便我使用示波器。 在
我是一名优秀的程序员,十分优秀!