12
"ดั้งเดิม JSON ไม่ถูกต้อง" ในการประมวลผล Ajax
ฉันได้รับข้อผิดพลาดในการโทร ajax จาก jQuery นี่คือฟังก์ชั่น jQuery ของฉัน: function DeleteItem(RecordId, UId, XmlName, ItemType, UserProfileId) { var obj = { RecordId: RecordId, UserId: UId, UserProfileId: UserProfileId, ItemType: ItemType, FileName: XmlName }; var json = Sys.Serialization.JavaScriptSerializer.serialize(obj); $.ajax({ type: "POST", url: "EditUserProfile.aspx/DeleteRecord", data: json, contentType: "application/json; charset=utf-8", dataType: "json", async: true, cache: false, success: …