添加不同的“url” Sharepoint 搜索结果中的列
我有一个自定义的 Sharepoint 结果 xsl,并且我之前添加了新列(通过元数据映射等),这个让我难住了。 我们有一个文档类型,可以是“文档”或“文档链接”。 当我搜索时,我想检查“文档链接”的内部 URL(它指向什么),但我只获得“文档链接”的实际 URL。
我需要对哪些属性进行索引才能显示它?
I have a customised Sharepoint results xsl, and I've added new columns before (via Metadata mappings etc), this one has me stumped.
We have a document type, that can either be a 'Document' or a 'Link to a document'.
When I search I want to check the URL INSIDE the 'Link to a document' (what it points to), but I only get the actual URL for the 'Link to a document'.
What property do I need to be indexing to display this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您正在要求一种功能,可以动态索引“文档链接”URL 的内容。 如果属实,遗憾的是,这无法通过开箱即用的 SharePoint 来完成。 该产品仅对搜索管理中指定的一组 URL/内容源列表进行索引。
作为自定义解决方案,您可以使用计时器作业编写自己的索引器,该计时器作业定期提取每个“链接到文档”URL 列的内容并将其填充到文档内容类型中的字段中。 也许甚至有一种方法可以在其上运行 SharePoint 的索引器并使用其结果。
It seems like you are asking for a feature that dynamically indexes the contents of the 'Link to a document' URL. If true, unfortunately this can't be done with out-of-the-box SharePoint. The product only indexes a set list of URLs / content sources as specified in Search Admin.
As a custom solution, you could write your own indexer using a timer job that regularly extracts the contents of each 'Link to a document' URL column and stuffs it into a field in your document content type. Perhaps there is even a way to run SharePoint's indexer over it and use the results of that.