在 Sharepoint 2013 中,使用 Search REST API;path
我可以通过使用inquerytext
查询标签来获得结果,如下所示:
http://host/_api/search/query?querytext='path=http://host/site/pages/index.aspx'
问题是,我需要制定多个条件path
才能获得两者的结果:
path='http://host/site/pages/index.aspx'
和path='http://host/site/pages/someother.aspx'
我尝试了以下语法示例,但无法获得结果:
..query?querytext='path=path1,path2'
..query?querytext='path=path1;path2'
..query?querytext='path=path1,path=path2'
..query?querytext='path=path1 or path2'
..query?querytext='path=((path1)or(path2))'
..query?querytext='path=path1'&querytext='path=path2'
而且很可能更多。
提前致谢。