我正在使用get api查询。在某一点上,有一部分内容如下:
"... %20customer_list:/serviced/& ..."
我注意到这个查询使用和不使用“/”。总是这样吗?那个角色是用来干什么的?

最佳答案

会不会有任何问题,但你必须确定它是否需要你与“/”字符?例如:

myfile.aspx?myValue=user%20customer_list:/serviced/&...

当您请求myvalue的值时,您将得到:
"user customer_list:/serviced/"

否则,如果您收到的值没有“/”:
"user customer_list:serviced"

这会导致您的实现失败吗?

关于http - GET API查询解释为“/”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31196598/

10-10 09:57