两个带有 xml 绑定数据的独立下拉菜单 - cakephp - 最好的方法?
cakephp 网站中的最佳方法是什么 -
- 两个下拉菜单
- ,一个列出 CD,一个列出
- 选择 CD 或艺术家的艺术家 我需要我的附加文本出现在下拉列表下方
我一直在搜索教程和手册 - 但没有成功。我希望通过基本示例来学习 - 从表单/视图和控制器。
最近的尝试是沿着这个示例获取下拉菜单 [CakePHP 中的下拉选择列表
What's best method within cakephp site for-
- two dropdowns
- one listing cds, one listing artists
- on select of either cd or artist I need my additional text to appear below dropdowns
I have been searching through tutorials and manual - with no success. I am looking to learn by basic example - from form/view and controller.
latest try was something along this example to get dropdown [Dropdown select list in CakePHP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管适用 CakePHP 技术,但我在 CakePHP 中执行此操作的方式与在任何应用程序中执行此操作的方式相同。我将使用 Javascript(本例中的 jQuery 框架)来:
change
事件 对在 CakePHP 上下文中,我会在我的
CdsController
和ArtistsController
中创建方法(当然,我猜测您的命名约定)来响应到 Ajax 请求。Although CakePHP techniques apply, the way that I'd do this in CakePHP is the same way I'd do it in any app. I'd use Javascript (the jQuery framework in my case) to:
change
event of each dropdownIn the CakePHP context, I'd create methods in my
CdsController
andArtistsController
(I'm guessing at your naming convention, of course) to respond to the Ajax request.