我为创建新客户端创建了一个端点。
首先我创建了Client并使用了事务(参见下面的代码)。
它正常工作。
# Before add set_result
js_method :on_new_contact, <<-JS
function() {
var form = this.items.first().getForm();
if (form.isValid()) {
this.newContact(form.getFieldValues());
this.closeRes = 'create_user';
this.close();
}
}
JS
endpoint :new_contact do |params|
data_hash = params.to_hash
Client.transaction do
new_client = Client.new
data_hash.each do |field, value|
new_client.__send__("#{field}=", value)
end
if new_client.save!
flash :notice => "Client #{new_client.full_name} has been created"
else
flash :error => new_user.errors.full_messages.to_sentence
end # if
end # transaction
{:netzkeFeedback => @flash}
end # endpoint
在我添加set result以从端点返回新的客户端ID之后。
它将新客户端保存3次到我的数据库。
# After add set_result
js_method :on_new_contact, <<-JS
function() {
var form = this.items.first().getForm();
if (form.isValid()) {
this.newContact(form.getFieldValues(), function(value){
alert(form);
alert(value);
}, this);
this.closeRes = 'create_user';
this.close();
}
}
JS
endpoint :new_contact do |params|
data_hash = params.to_hash
Client.transaction do
new_client = Client.new
data_hash.each do |field, value|
new_client.__send__("#{field}=", value)
end
if new_client.save!
flash :notice => "Client #{new_client.full_name} has been created"
else
flash :error => new_user.errors.full_messages.to_sentence
end # if
end # transaction
{:netzkeFeedback => @flash, :set_result => new_client.id}
end # endpoint
我已经尝试找出问题所在。
我发现当我将set_result用于事务时会发生这种情况。
如果我删除了transaction
OR set_result
代码,它将正常运行。
然后我怎样才能使它发挥作用?