如果我在IE中传递非英语语言,则其余网址不会返回任何值,它在Chrome中正常工作但在IE中却无效。需要帮助才能在IE中使用它。以下是REST调用
/_api/web/lists/getByTitle('listname')/items?$select=*&$filter=substringof('银行存款1',ChineseLang)
答案 0 :(得分:2)
得到了解决方案,In chrome参数被编码为什么它能够从列表中获取记录。对于IE,浏览器不对值进行编码,因此我们需要对值进行编码。
myAngApp1=document.getElementById("ItemSearch");
var uri = myAngApp1.value;
var place = encodeURIComponent(uri);
在REST调用中将参数传递给参数。
由于 Sanjeev Gautam