0
與Ruby on Rails一樣,我使用simple_form gem以更優雅和簡單的方式處理表單。但我有這個問題,那個字符串輸入沒有正確生成。我的意思是他們按照他們應有的工作,但他們只是非常長,就像完全脫離我的屏幕。這是不是正常的行爲呢?我應該爲此應用任何特殊的CSS嗎?或者有其他解決方案?Simple_form輸入太長
這種形式,我有這個樣子的:
= simple_form_for @book, url: books_path, method: :post do |f|
= f.input :title, label: false, placeholder: "title"
= f.input :author, label: false, placeholder: "author"
= f.input :isbn, label: false, placeholder: "ISBN"
= f.input :publishing_date, label: false, placeholder: "Publishing date"
= f.input :amount, label: false, placeholder: "Amount"
= f.submit class: "btn btn-success"
其他,這我只是把「寶石‘simple_form’」到Gemfile中和完蛋了。