2020-09-01 04:56发布
点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)请让我知道如何在PLP页面上启用... 显示全部
加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)
请让我知道如何在PLP页面上启用自动建议。 假设我们在PLP的搜索框中搜索字符时,需要列出带有该字符的建议产品。 让我知道如何实施。 预先感谢。
您好Yeshwanth Kumar Thotam Setty,
要从头开始实施自动提示,您必须:
$ solrIndexedType = productType INSERT_UPDATE SolrIndexedProperty; solrIndexedType(identifier)[unique = true]; 名称[unique = true]; useForAutocomplete [默认=假] ; $ solrIndexedType; 代码; 真正 ; $ solrIndexedType; 名称 ; 真正
@ResponseBody @RequestMapping(value ="/img/autocomplete",方法= RequestMethod.GET) 公共List getAutocompleteSuggestions(@RequestParam(" term")最终String术语) { 最后的String termSanitized = SecurityUtil.sanitize(term); 最终List 项=新的ArrayList (); 为(最终AutocompleteSuggestionData termData:solrProductSearchFacade.getAutocompleteSuggestions(termSanitized)) { terms.add(termData.getTerm()); } 返回条款; }
@ResponseBody @RequestMapping(值="/img/autocomplete/" + COMPONENT_UID_PATH_VARIABLE_PATTERN,方法= RequestMethod.GET) public AutocompleteResultData getAutocompleteSuggestions(@PathVariable最终字符串componentUid, @RequestParam(" term")最终String项)引发CMSItemNotFoundException { 最后的String termSanitized = SecurityUtil.sanitize(term); 最终的AutocompleteResultData resultData = new AutocompleteResultData(); resultData.setSuggestions(subList(solrProductSearchFacade.getAutocompleteSuggestions(termSanitized),MAX_PRODUCTS_ELEMENTS));; resultData.setProducts(subList(solrProductSearchFacade.textSearch(termSanitized).getResults(),MAX_PRODUCTS_ELEMENTS)); 返回resultData; }
希望这会有所帮助,
伊戈尔
最多设置5个标签!
您好Yeshwanth Kumar Thotam Setty,
要从头开始实施自动提示,您必须:
希望这会有所帮助,
伊戈尔
一周热门 更多>