当我尝试将JSON发布到服务器端功能时,我收到此错误
传入的对象无效,':'或者'}'}预期
我正在使用ckeditor,这样我就可以从ckeditor获取数据。
var ckEditorCtrl = GetClientID("CKEditor1").attr("id");
var newcontent = getEditorContents(ckEditorCtrl.toString());
function GetClientID(id, context) {
var el = $("#" + id, context);
if (el.length < 1)
el = $("[id$=_" + id + "]", context);
return el;
}
function getEditorContents(ename) {
if (CKEDITOR.instances[ename])
return CKEDITOR.instances[ename].getData();
var e = $("textarea[id$='" + ename + "']")[0];
if (e)
return e.value;
return false;
}
我试图从ckeditor发布捕获的HTML如下
<img alt="" src="https://shop.bba-reman.com/wp-content/uploads/2017/05/Toyota-Auris-gearbox-actuator-1-300x300.jpg" style="width: 300px; height: 300px;" /><br />
<br />
We can <strong>REPAIR </strong>your Toyota Auris gearbox actuator
这样我发布数据。这是代码
$.ajax({
type: "POST",
url: "/abcpage.aspx/contentinsert",
//data: '{"CID":"' + $("[id$='txtContentID").val() + '","CTitle":"' + $("[id$='txtTitle").val() + '","CDesc":"' + $("[id$='txtDesc").val() + '","CKey":"' + $("[id$='txtKeywords").val() + '","CBody":"' + newcontent + '"}',
data: '{"CID":"' + $("#txtContentID").val() + '","CTitle":"' + $("#txtTitle").val() + '","CDesc":"' + $("#txtDesc").val() + '","CKey":"' + $("#txtKeywords").val() + '","CBody":"' + newcontent + '","OldBody":"' + oldcontent + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
InsertSuccess(msg);
ComboLoad();
HideProgressAnimation();
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
var jsonError = JSON.parse(XMLHttpRequest.responseText);
alert(jsonError.Message);
ComboLoad();
HideProgressAnimation();
}
});
答案 0 :(得分:3)
我会在Ajax请求之前执行此操作:
var data = {};
data.CID = $("#txtContentID").val();
data.CTitle = $("#txtTitle").val();
data.CDesc = $("#txtDesc").val();
data.CKey = $("#txtKeywords").val();
data.CBody = newcontent;
data.OldBody = oldcontent;
然后:
$.ajax({
data: JSON.stringify(data),
// ...
这比搞乱所有这些报价更容易。
答案 1 :(得分:1)
传入的对象无效,&#39;:&#39;或者&#39;}&#39;}预期
是由ASP.NET用于反序列化JSON的ArgumentException
抛出的JavaScriptSerializer
。该错误意味着您的JSON格式错误。例如,可能是流浪的引用或缺少花括号。
我们可以使用这个简单的程序复制错误,该程序试图反序列化一个JSON字符串,其中包含一个额外的错误双引号:
void Main()
{
var js = new JavaScriptSerializer();
string invalidJson = "{\"Testing\":\"\"test\"}";
js.Deserialize<Test>(invalidJson);
}
public class Test
{
public string Testing { get; set; }
}
以上抛出并显示相同的错误消息。有效的JSON不会产生任何错误:
string invalidJson = "{\"Testing\":\"test\"}";