Pergunta

Estamos construindo um site no SharePoint 2013 usando os novos recursos de publicação e pesquisa do site. Queremos implementar um recurso de "itens relacionados" usando a Web Part de pesquisa de conteúdo em conjunto com campos de metadados gerenciados que existem em todos os tipos de conteúdo da página. Portanto, o conteúdo (itens de catálogo) pode ser marcado com um campo "locais" para descrever a relevância geográfica do item de conteúdo.

Se tivermos uma página de item de catálogo que está usando a Web Part de Pesquisa de Conteúdo (e Web Parts de Reutilização de Conteúdo) para exibir as informações da página principal, é possível adicionar outra peça de pesquisa de conteúdo à página que usa dados do Consulta principal (ou seja, o conteúdo do campo de localização) para executar outra pesquisa para retomar todos os outros conteúdos correspondentes ao mesmo local. Em nosso contexto, o campo de localização permite vários valores, portanto, seria capaz de corresponder em vários itens também.

Eu sei que isso foi possível com campos de metadados de valor único em 2010 usando a Web Part de Consulta de Conteúdo, mas esta funcionalidade é replicada na Web Part de pesquisa de conteúdo?

Eu posso ver que você pode combinar em uma tag, mas isso depende de você codificar um valor para a web, queremos que ele seja dinâmico com base em outros valores na página. Também posso ver que você pode usar um valor "campo" da "página atual" como um filtro de propriedade na Web Part de pesquisa de conteúdo. Meu entendimento é que os itens extraídos da pesquisa não são "campos na página".

Alguém sabe como implementar esse recurso usando os recursos de pesquisa do SharePoint 2013? Ou fornecer quaisquer links para a documentação deste processo?

obrigado.

Foi útil?

Solução

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!

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top