首页 > 解决方案 > 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')))

标签: restapisharepoint-2013

解决方案


编辑:

前面我们讲过,在IE浏览器中,空格字符不能转为转义字符%20,你可以手动修改Url,再试试看是否有效。


推荐阅读