我無法弄清楚,如果我能在數據標籤發送一個數組: 我的客戶JS代碼如下所示:通陣列 - 引導Ajax調用
$.ajax({
url: '/mobiledoc/jsp/aco/Beneficiary/ptmmview.jsp',
data: {
"action":"savePatientRecords",
"ptId":strPtId,
"PatientVal":PatientVal,
"Qid":Qid,
"QType":QType
"Array" : ??
},
dataType: 'text',
type: 'post',
success: function (responseMsg) {
// gets the response message back from server
loadMilestoneData();
alert(responseMsg);
只是爲了重申我希望發送一個數組。我知道,當我收到我可以只改變dataType:'json'。但那不是我關心的問題。 – user1908568