gpt4 book ai didi

ruby-on-rails - REXML::ParseException 没有有效的根

转载 作者:行者123 更新时间:2023-12-02 22:40:30 35 4
gpt4 key购买 nike

当我尝试发出 json post 请求时出现以下错误:

REXML::ParseException (The document "{\"user\":1,\"email\":\"some@email.com\"}:" does not have a valid root):

不确定从哪里开始。

我的标题看起来像这样:

Accept:application/json, text/javascript, */*; q=0.01
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:38
Content-Type:application/x-www-form-urlencoded
Cookie:_washapp_session=SOME_COOKIE_STRING
Host:myapp.herokuapp.com
Origin:http://myapp.herokuapp.com
Referer:http://myapp.herokuapp.com/user/1/add_friends
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5
X-CSRF-Token:k5bxjBJ3SCMhe1ILfChoiy6qwkYfVsg0JYZV9KDnwIg=
X-Requested-With:XMLHttpRequest

最佳答案

Content-Type 应该是 application/jsonAccept 只是指定您希望如何返回信息,Content-Type 描述您要发送的内容。

您可以使用 $.post 指定数据类型:

$.post("http://myapp.herokuapp.com/user/1/add_friends", 
{user:1, email:"some@email.com"},
function(data){
processResponse(data);
},
"json");

关于ruby-on-rails - REXML::ParseException 没有有效的根,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10841305/

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