RoR - 协会实践 - 表格(视图)

发布于 2024-08-28 17:13:53 字数 502 浏览 5 评论 0原文

我正在学习 Ruby on Rails。

我正在使用一些关联(has_many:through,...),

但是当我结合我的观点时,我遇到了一些问题。

我到底如何组合这些嵌套形式?我可以使用部分表单来完成此操作吗?我必须在哪里为此编写额外的代码?我见过的例子只使用“视图”,其他人也编辑控制器......

一个例子会非常好:-)

编辑:

我的“小”个人项目是关于电影的,我将向您展示模型。 我想要一种形式的所有数据库字段...

我从哪里开始? =>部分形式然后将其组合在一起? 还是从头开始?

表:boxMovies [ 名称:字符串 ]

表:boxMovies_movies [ boxMovies_id :字符串 movie_id : 字符串 部分:整数 ]

表:电影 [ 名称:字符串 描述:字符串 ]

表:电影新闻 [ movie_id:int(FK) 标题:字符串 新闻:文字 ]

I'm learning Ruby on Rails.

I'm using some associations (has_many :through, ...)

But i'm having some problems with it when i'm combining my views.

How exactly do i combine these nested forms? Can i do this with partial forms and where do i have to write extra code for this? I have seen examples only use the "view" and others also edit the controller....

An example would be very nice :-)

Edit:

My "little" personal project is about movies, i'll show you the model.
I want all the database fields in ONE form...

Where do i begin? => partial forms and put it together afterwards?
Or from scratch?

table: boxMovies
[
name:string
]

table: boxMovies_movies
[
boxMovies_id : string
movies_id : string
part : integer
]

table: movies
[
name : string
description : string
]

table: movieNews
[
movie_id : int (FK)
title : string
news : text
]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吝吻 2024-09-04 17:13:54

我相信这就是您正在寻找的: accepts_nested_attributes_for ,如果你说得具体一点我可以给你更详细的答案。

I believe this is what you're looking for: accepts_nested_attributes_for, I can give you a more detailed answer if you be more specific.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文