SharePoint CAML 搜索修改者
在 MOSS2007 中使用以下 CAML 查询返回结果时,我应该在值中使用什么?该查询当前未返回任何结果。我已尝试使用帐户名称和列表中显示的名称,但现在可用。
<Eq><FieldRef Name='Modified_x0020_By' /><Value Type='User'>domain\someusername</Value></Eq>
What do I use in the value to return results using the following CAML query in MOSS2007? The query is currently not returning any results. I have tried using the Account Name and the name displayed in the list but to now avail.
<Eq><FieldRef Name='Modified_x0020_By' /><Value Type='User'>domain\someusername</Value></Eq>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,我看到“修改者”列的内部名称实际上是“编辑器”。
这对我有用:
First of all, I see the internal name for the "Modified By" column is actually "Editor".
This worked for me:
这是我在任务列表上使用的查询的示例(但应该大致相同):
我使用字段的 id 而不是内部名称,不过......可能会对您有所帮助。
Here is an example from a query I used on the tasks list (but should be about the same):
I used the id of the field instead of internal name though...might help you.
好的,我设法通过搜索“作者”而不是“Modified_x0020_By”来完成此工作。
OK I managed to get this working by searching on "Author" rather than "Modified_x0020_By".