其余 API 不适用于 IE11,但适用于 Chrome 和 edge
Rest API not working on IE11, but working on Chrome and edge
我有一个 Rest API,它 return 在 Chrome 和 Edge 中产生结果,但在 IE11 中 return 没有任何结果,有人可以帮忙吗?
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浏览器中,space字符不会转义为%20字符,您可以手动修改Url,再试一下是否有效。
我有一个 Rest API,它 return 在 Chrome 和 Edge 中产生结果,但在 IE11 中 return 没有任何结果,有人可以帮忙吗?
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浏览器中,space字符不会转义为%20字符,您可以手动修改Url,再试一下是否有效。