質問

新しいクロスサイトの公開および検索機能を使用して、SharePoint 2013上のWebサイトを構築しています。すべてのページコンテンツタイプに存在する管理対象メタデータフィールドとタンデム内のコンテンツ検索Webパーツを使用して、「関連項目」機能を実装します。したがって、コンテンツ(カタログアイテム)は、コンテンツアイテムの地理的関連性を説明するための「場所」フィールドでタグ付けすることができます。

コンテンツ検索Webパーツ(およびコンテンツ再利用Webパーツ)を使用してメインページ情報を表示するカタログアイテムページを持っている場合は、次のコンテンツ検索Webパーツを追加することができます。同じ場所に一致する他のすべてのコンテンツを引き戻すために別の検索を実行するためのメインクエリ(つまり、場所フィールドの内容)。私たちの文脈では、場所フィールドで複数の値を使用すると、理想的には複数の項目でも一致することができます。

私は2010年に単一の値メタデータフィールドで可能であることを知っていますコンテンツクエリWebパーツを使用するが、この機能はコンテンツ検索ウェブ部分で複製されますか?

タグに一致することができるが、それがあなたにWebパートへの値をハードコーディングすることに依存しているので、そのページの他の値に基づいて動的になることを望みます。 Content Search Webパーツのプロパティフィルタとして「現在のページ」から「フィールド」の値を使用できることを確認できます。私の理解は、検索から引き出された項目は「ページ上のフィールド」ではありません。

SharePoint 2013検索機能を使用してこの機能を実装する方法を誰でも知っていますか?またはこのプロセスの文書化へのリンクを入力してくださいか?

ありがとう。

役に立ちましたか?

解決

I've found a way to accomplish this given a situation where the managed property value I need to make the secondary/related CSWP lookup happens to be exposed in the URL of the primary catalog item.

I.e., a People Catalog with a catalog item URL of (/directory/Last, First) --- I want to show activities related to that person (from an Activities Catalog at /activities/Activity Title) on the person's catalog item page.

So in the Activities Catalog I created a site column 'Credit' and populated it with values of 'Last, First' - then on the People Catalog individual item page I went into edit mode, added a CSWP, and leveraged the "value of a token from URL" advanced query parameter to search the Activities list:

(contentclass:sts_listitem OR IsDocument:True) SPSiteUrl:http://authsite.organization.com ListId:6b291282-99e7-4d97-a5ff-activitieslistGUID CreditOWSTEXT:{URLToken.1}

I have not yet found a way to directly pass a value retrieved from one CSWP to another CSWP as a query filter parameter, though my brain sort of expects that capability to be there somewhere, and it might just be a case of my overlooking something obvious or under-documented (or maybe just my glazing over while reading documentation.)

I also have not yet found a good way to work this relationship in reverse. In other words, the Activities Catalog item URLs look like /activities/ActivityTitle so I'm not able to add a second CSWP on an individual activity page and have it query the person, since their name isn't exposed in the URL, and I don't want to add a column to a person which contains the titles of all activities related to them (though I suppose that could work.)

Though the Credit column I created above is a Single Line of Text field, it is populated on the authoring site through an on-modify workflow that copies the value from a lookup field. (In other words, the content manager on the authoring site selects the value from a Lookup field, and a workflow populates the text field with the lookup value.) I did this since it's so much easier to work with text fields in CSWP than lookup fields, though I expect that as I become more capable this might not prove necessary.

If you want to know more about the solution described above, just let me know... happy to discuss. Relating information between lists continues to feel more an art than a science, especially on opposite sides of the search service, and I continue to learn better techniques everyday!

PS - I haven't played much with web API services, but rather than nesting a CSWP in the individual catalog item page, I'd assume if the DOM output produced is solid, you could use client-side JavaScript to read a field value from the rendered CSWP page (based on ID or name or something) and run a subsequent AJAX query against another list to retrieve related values.

Peace and Joy!

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top