Избегайте артефактов длиной более x символов
Мой код выглядит следующим образом
$.Аякс({
тип: "пост",
url: "VendorMaster. aspx/SanDocumentData",
данные: '{reqvehicleregistrationname: "' + vehicleregistrationname + '", reqvehicleregistrationpath:" ' + vehicleregistrationpath + '"}',
contentType: "application/json; charset=utf-8",
тип ответа: "json",
кэш: false
}
);
Из приведенного выше кода нижеприведенная строка превышает 120 символов, как разделить .
данные: '{reqvehicleregistrationname: "' + vehicleregistrationname +
'", reqvehicleregistrationpath: "' + vehicleregistrationpath + '"}',
как это сделать.
Что я уже пробовал:
My code as follows $.ajax({ type: "POST", url: "VendorMaster.aspx/SanDocumentData", data: '{reqvehicleregistrationname: "' + vehicleregistrationname + '",reqvehicleregistrationpath:"' + vehicleregistrationpath + '" }', contentType: "application/json; charset=utf-8", responseType: "json", cache: false } ); From the above code the below line exceed 120 characters, how to split . data: '{reqvehicleregistrationname: "' + vehicleregistrationname + '",reqvehicleregistrationpath: "' + vehicleregistrationpath + '" }', how to do.
Patrice T
#realJSOP
Почему вы снова задаете этот вопрос?