คำถามติดแท็ก nested-forms

21
คุณสามารถซ้อนแบบฟอร์ม html ได้หรือไม่
เป็นไปได้หรือไม่ที่จะซ้อนรูปแบบ HTML เช่นนี้ <form name="mainForm"> <form name="subForm"> </form> </form> เพื่อให้ทั้งสองรูปแบบทำงานอย่างไร เพื่อนของฉันมีปัญหากับสิ่งนี้เป็นส่วนหนึ่งของsubFormงานในขณะที่อีกส่วนหนึ่งไม่ได้ทำงาน
451 html  nested-forms 

3
Rails ซ้อนรูปแบบ has_many: ถึงวิธีแก้ไขแอตทริบิวต์ของ join model?
คุณจะแก้ไขแอตทริบิวต์ของโมเดลการเข้าร่วมได้อย่างไรเมื่อใช้ accept_nested_attributes_for ฉันมี 3 โมเดล: หัวข้อและบทความที่ Linkers เข้าร่วม 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 …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.