我可以将 MVC 操作作为 AutoCompleteExtender 的 ServiceMethod 吗?
假设 Tools 是我的控制器,我在 ServicePath 中指定“/Tools”,并在 ServiceMethod 中指定操作名称“GetToolsList”。 我可以通过这种方式触发 AutoCompleteExtender 吗? 我如何才能将 prefixText 传递给此处的操作? 还是不可能?
Assuming Tools is my Controller, I specify '/Tools' in the ServicePath, and the action name 'GetToolsList' in the ServiceMethod. Can I fire an AutoCompleteExtender this way? How would I be able to pass the prefixText to the Action here? Or is it not possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
做到了。 创建一个返回 void 的操作,并对输出进行 JSON 序列化并将其写入响应对象,以便在 AutoCompleteExtender 中读取和显示它。
Did it. Created an action that returned void, and JSON-serialized the output and wrote it into the response object so that it's read and shown in an AutoCompleteExtender.