我正在尝试创建一个函数来通过 请求我们数据库中有关国家/地区 ID 的信息ajax
,因为这就是address
我查询的表中数据的表示方式。即在address
表中,代表id
的是国家而不是国家名称,而实际的国家名称在我查询的另一个表中。
发送ajax
请求后,我创建了一个我得到的地址字符串。但是,它只更新对象的最后一个值,而不是全部。这是我的咖啡脚本:
requests = Array()
for key, val of {'Correspondence_Country__c':data['Correspondence_Country__c'], 'Country_of_Residence__c': data['Country_of_Residence__c']}
console.log(key)
console.log(val)
requests.push($.ajax
url: window.location.pathname
type: 'post'
dataType: 'json'
data: 'search_id=' + val + '&search_column=Id&sobject=Country__c&columns=["Name"]'
error: (jqXHR, textStatus, errorThrown) ->
alert('Error: ' + textStatus + ': ' + errorThrown)
success: (c_data, textStatus, jqXHR) ->
data[key] = c_data['Name']
console.log(c_data['Name'])
console.log(key)
)
defer = $.when.apply($, requests)
我省略了这个defer.done
功能。console.log信息的结果如下:
China P.R.
Country_of_Residence__c
China P.R.
Country_of_Residence__c
而不是预期的
China P.R.
Correspondence_Country__c
China P.R.
Country_of_Residence__c
我的 Coffeescript 有问题吗?
编辑:看起来这与ajax
请求或将请求推ajax
送到requests
数组有关。console.log()
在我推送调用之前,我在函数的开头添加了一对ajax
,它产生了以下信息:
Correspondence_Country__c
a063000000CZoZHAA1
Country_of_Residence__c
a063000000CZoZHAA1