We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
看了 http://www.nutz.cn/yvr/t/rgb3f3784ii81oif289i9g5q92 这个帖子,根据兽总的回答配置后,很快就能正常将json参数传递到服务端。 但是出现一个问题,json字符串中如果某个Key的值是URL,在服务端接收到的值URL会少一个/
例如请求的参数 {"assignID":true,"autoExtract":false,"nodeName":"test","links":"http://www.test.com/file.txt"} 服务端接收到的link为http:/www.test.com/file.txt。
{"assignID":true,"autoExtract":false,"nodeName":"test","links":"http://www.test.com/file.txt"}
大概看了一下源码应该是MappingNode.java中在分割path的时候使用了"/"导致的。
The text was updated successfully, but these errors were encountered:
做不到吧, 一般也不这样传json
Sorry, something went wrong.
No branches or pull requests
看了 http://www.nutz.cn/yvr/t/rgb3f3784ii81oif289i9g5q92 这个帖子,根据兽总的回答配置后,很快就能正常将json参数传递到服务端。
但是出现一个问题,json字符串中如果某个Key的值是URL,在服务端接收到的值URL会少一个/
例如请求的参数
{"assignID":true,"autoExtract":false,"nodeName":"test","links":"http://www.test.com/file.txt"}
服务端接收到的link为http:/www.test.com/file.txt。
大概看了一下源码应该是MappingNode.java中在分割path的时候使用了"/"导致的。
The text was updated successfully, but these errors were encountered: