gpt4 book ai didi

ajax put 返回 500 内部服务器错误

转载 作者:行者123 更新时间:2023-12-01 06:04:03 25 4
gpt4 key购买 nike

我正在使用 django tastypie 来实现 REST api,但遇到了一个我无法解决的问题:

当我运行时

curl -H "Content-Type: application/json" -X PUT --data '{"title": "my video", "date_created": "2007-03-07T14:48:22"}' http://localhost:8080/api/v1/video/1/

这可以正常工作并按预期更改内容。

但是,当我尝试通过浏览器通过以下调用来执行此操作时:

 $.ajax({
url: 'http://localhost:8080/api/v1/video/1/',
type: 'PUT',
data: JSON.stringify(mydata),
success: check,
dataType: 'text/html',
error: function(jqXHR, textStatus, errorThrown) {
alert(textStatus);
},
});

我收到 500 内部服务器错误

我不知道这是为什么......这是因为浏览器不再支持 PUT 吗?正确的解决办法是什么?

最佳答案

我认为您使用的数据类型不正确,请尝试使用 jsonp。也可能是特定于浏览器的,来自 jQuery:

The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.

此链接也可能有用:jquery - how to put json via ajax

关于ajax put 返回 500 内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8373119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com