错误415:x

Web服务接受application/json ,但带有dataType : 'json' $.ajax()集试图发送数据为application/x-www-form-urlencoded 。 这里有什么窍门?


dataType: 'json'指定jQuery期望从服务器返回JSON(请参阅文档)。 为了指定您要发送JSON,您需要添加contentType: "application/json"

此外,jQuery不能将对象转换为JSON。 如果您将任何对象传递给data ,则需要自行将其对齐:

data: JSON.stringify(dataObject);
链接地址: http://www.djcxy.com/p/46161.html

上一篇: Error 415: x

下一篇: Ajax POST has null entry for parameter [assetID]?