opensearch 中的自动完成
我已经使用 WCF 完成了 opensearch 的自动完成功能。但我们使用的是 3.5,所以我现在需要在不使用 WCF 的情况下实现相同的目标。
任何想法或请给我发送任何有用的链接。
我的场景是当我输入名称时,它应该从数据库中获取相关名称并显示。我有一个从数据库获取数据的网络方法。我所需要的只是如何在 opensearch.xml 中提及模板。我提到了 wcfservice。
请帮我
I have done autocomplete functionality for opensearch using WCF. But we are using 3.5, so I now need to achieve the same without using WCF.
Any idea or please send me any useful link.
My scenario is when I type name, it should fetch related name from db and display. I have a webmethod to fetch data from db. All I need is how to mention the template in opensearch.xml. I was mentioning wcfservice.
please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 search.xml 文件中需要以下语法:
如果有人开始输入 fre,则搜索控制器上查找建议的方法应返回以下格式的 JSON 建议数组:
看看位于 Mozilla 文档
You need the following syntax in your search.xml file:
If someone starts typing in fre the method on the search controller that looks for suggestions should then return a JSON array of suggestions in this format:
Have a look at Mozilla's documentation