如何從ajax中的動態生成字段發送多個數據?從動態生成的字段發送多個ajax數據
由於我無法預先知道字段的數量,所以我使用了一個for循環,這對我不起作用。
$.ajax({
type: 'GET',
data:{
expectationPercentagePairId: JSON.stringify(expectationPercentagePairIds),
expectationScores: expectationScores,
for(var id in expectationPercentagePairIds){
score-${id}: $("input[name='score-'+id]")
}
},
url:'${g.createLink(controller:'review', action:'saveReview', params:[id: params.id])}'
});
你可以將數據作爲數組/ json – Sherlock
這些字段的名稱是不同的。我可以傳遞數據來自數據來自的字段的名稱? – Yet
這個expectationPercentagePairIds的內容是什麼? – Sherlock