私は非常に単純なウェブサイトを持っています。このウェブサイトには、文字列のタイトルとテキストの説明を含む足場記事があります。編集や新規のために、送信ボタンが機能しないことがあります。その後、ページをリフレッシュした後、ボタンは再び機能します。私はbootstrap-sass 3.3.6、rails 5.0.0を使用しています。Ruby On Railsサブミットボタンが動作しないことがありますか?
これは私のフォームのコードです:
<%= form_for(article, :html => {class: "form-horizontal", role: "form"}) do |f| %>
<div class="form-group">
<div class="control-label col-sm-2">
<%= f.label :title %>
</div>
<div class="col-sm-6">
<%= f.text_field :title, class: "form-control", placeholder: "Title of article", autofocus: true%>
</div>
</div>
<br />
<div class="form-group">
<div class="control-label col-sm-2">
<%= f.label :description %>
</div>
<div class="col-sm-6">
<%= f.text_area :description, rows: 5, class: "form-control", placeholder: "Body of the article", autofocus: true%>
</div>
</div>
</div>
<div class="form-group">
<%= f.submit class:"btn btn-primary btn-lg" %>
</div>
これを引き起こしている可能性がありますか?
ご意見・コードは罰金です。あなたのコントローラコードも追加してください。 – Sinscary