如何在 Symfony2 中使用实体表单字段类型和 JUI 自动完成功能?
我有一个表单,其中有 entity
字段类型,它使用户能够选择相关的 Client
实体。它在开发环境中运行良好,但在生产环境中将有数千个客户端可供选择,而 HTML 表单字段类型将无法处理此问题。
我已经编写了使用 Zend Lucene 的操作并以 JSON 格式返回客户端以进行 JUI 自动完成,如何使用 entity
表单字段类型启用此自动完成?
I have form where I have entity
field type, witch enables user to choose the related Client
entity. It works great in dev environment but in production there will be thousands of clients to choose from, and HTML form field types will not be able to handle this.
I've written action witch uses Zend Lucene and returns clients in JSON format for JUI autocomplete, how I can enable this autocomplete with entity
form field type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这并不完全是您想要的答案,因为我是通过选择字段完成的,这是一种解决方法。这是一个表单,您可以在其中选择发送消息的接收者(=营销活动):
在 FormType 中:
然后在控制器中:检索发布的联系人并将其分配给营销活动:
这允许您使用任何 JS 小部件(自动完成、. ..) 在前端。只需将选项添加到您的选择字段即可。有点儿:
This is not exactly the answer you want, cause I did it with a choice field, and it's kind of a work around. This is a form where you can select receivers for sending a message(=campaign):
In the FormType:
Then in the controller: retrieve the posted contacts and assign them to the campaign:
This allows you to use whatever JS widget (autocomplete,...) on the frontend. Simply add options to your choice field. Kind of: