我正在使用 asp.net web api 做一个跨域的 json 帖子。在我的服务/服务器端,我有以下响应POST
请求的方法:
// POST api/<controller>
public HttpResponseMessage Post(Customer newCustomer)
{
DataClassesDataContext db = new DataClassesDataContext();
var response = Request.CreateResponse<Customer>(HttpStatusCode.Created, newCustomer);
db.Customers.InsertOnSubmit(newCustomer);
db.SubmitChanges();
string uri = Url.Link("DefaultApi", new { id = newCustomer.Id });
response.Headers.Location = new Uri(uri);
return response;
}
在客户端,它运行在不同的端口号(即跨域)上,我使用以下 jQuery 代码:
<body>
<input type="button" value="click me" onclick="hello()" />
<script type="text/javascript">
function hello() {
//SEE: http://stackoverflow.com/questions/5241088/jquery-call-to-webservice-returns-no-transport-error
$.support.cors = true;
//var jsonObjects = [{ Name: "Name1", CellphoneNum: 1234657911 }];
$.ajax({
url: "http://localhost:26037/api/customer",
type: "POST",
crossDomain: true,
data: { Name: "Name321", CellphoneNum: 1234657922 },
dataType: "json",
success: function (result) {
alert("Success");
},
error: function (xhr, ajaxOptions, thrownError) {
alert('Thrown Error: ' + thrownError);
alert('xhr status: ' + xhr.status);
}
});
}
</script>
</body>
我的问题是,从客户端,在 IE 上将显示成功警报消息,并且将使用我的 POST 方法中的 LINQ 代码将数据插入到数据库中。但是,使用 Chrome 或 Firefox 时,数据也会插入到数据库中,并且 LINQ 代码将成功执行,但会显示一个带有空字符串错误和 0 xhr 状态的消息框。
为什么在服务器上发布并成功处理数据时,它只在 Firefox 和 Chrome 上报告错误?