Yii Framework.如何在一个视图中使用多种表单
yii 中是否有以下需求的完整示例/解决方案?
1.在一页中收集用户数据,但同一型号的不同形式。
例如。我有一个表 abc ,其中包含以下列 column1
、column2、column3、column4
一样查看它
并需要像第一个表单 第 1 列(必填字段。) 列2 savebutton
第二个表单(需要第一个表单最后插入的 id) 第3栏 第4栏 savebutton
2.收集其他模型的数据,但在上面相同的视图
第三种形式 中 第5栏 第6栏 保存按钮
提前致谢
Is there a complete example/solution for the following requirement in yii?
1.Collect data from user in one page but in different form for the same model.
eg. I have a table abc with the following columns
column1,column2,column3,column4
and need view for it like
First form
column1(Field is required.)
column2
savebutton
Second form(need last inserted id of first form)
column3
column4
savebutton
2.Collect data for other model but in same above view
third form
colum5
colum6
savebutton
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果所有 6 列都在一页上,您可以将所有列包装在表单标签中吗?
if all 6 columns are on 1 page, you could just wrap all the columns in the form tag?
您可以在 Yii 中使用选项卡菜单作为您的表单。在选项卡中只需放置您的表单元素,在另一个选项卡中放置表单的另一个元素
作为参考,只需检查此链接
You can use tabs menu in Yii for your form.In tabs just put your form elements,in another tab put another elements of form
for reference just check this link