Rest API 在 IE11 上不起作用,但在 Chrome 和 Edge 上工作



我有一个 Rest API,它在 Chrome 和 Edge 中返回结果,但在 IE11 中没有返回任何结果,有人可以帮忙吗?

http://URL/SiteCollection/_api/web/lists/getbytitle('ListName')/items?$select=ID&$filter=((Item_x0020_Number eq '11000000018') and (AX_Customer_x0020_ID eq '31000001461') and (ParentID eq '154') and ((Request_x0020_Status eq 'X') or (Request_x0020_Status eq 'Y') or (Request_x0020_Status eq 'Z')))

编辑:

正如我们之前提到的,在IE浏览器中,空格字符不会转换为转义字符%20,您可以手动修改Url并尝试再次测试以查看它是否有效。

最新更新