タグ付けされた質問 「nested-forms」

21
HTMLフォームをネストできますか?
このようなhtmlフォームをネストすることは可能ですか? <form name="mainForm"> <form name="subForm"> </form> </form> 両方のフォームが機能するように?私の友人はこれに問題を抱えています、subFormそれは作品の一部ですが、別の部分はそうではありません。
451 html  nested-forms 

3
has_many:throughを使用したRailsのネストされたフォーム、結合モデルの属性を編集する方法は?
accepts_nested_attributes_forを使用する場合、結合モデルの属性をどのように編集しますか? 私は3つのモデルを持っています:リンカーによって結合されたトピックと記事 class Topic < ActiveRecord::Base has_many :linkers has_many :articles, :through => :linkers, :foreign_key => :article_id accepts_nested_attributes_for :articles end class Article < ActiveRecord::Base has_many :linkers has_many :topics, :through => :linkers, :foreign_key => :topic_id end class Linker < ActiveRecord::Base #this is the join model, has extra attributes like "relevance" belongs_to :topic …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.