Ajax 模态表单的 kohana 设置 url
我有一个 Kohana 控制器,以及与之对应的路线。 另外,我想制作一个当用户单击链接时将显示为 ajax 模式的表单。问题是:我希望此表单由不同的控制器操作控制,当然,因为我使用与使用第一个控制器操作的视图中完全相同的数据,所以我将具有完全相同的参数(在第二个控制器操作中)控制器动作)。 问题是,由于具有相同的参数和不同的操作,我的两个控制器的路线将指向同一页面。那么...
我怎样才能制作一个ajax模态表单,该表单将使用与我在其中放置模态表单链接的视图所使用的变量完全相同的变量?是否指示要进行另一个控制器操作?
谢谢你!
I have a Kohana controller, and a route corresponding to it.
also, i want to make a form that will appear as a ajax modal, when a user clicks a link. The problem is: i want this form to be controlled by a different controller action, and of course, because i am using exactly the same data as in the view using the first controller action, i will have exactly the same parameters (in the second controller action).
The problem is that, having the same parameters and only different actions, my both controlers's routes will point in the same page. So...
How can i make an ajax modal form that will use exactly the same variables that the view in which i am putting the link to the modal form is using? is it indicated to make another controller action?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你应该创建两个不同的视图。
I guess you just should create 2 different views.