我有一個非常簡單的網站,其中有一個字符串標題和文字描述的腳手架文章。有時我的提交按鈕不適用於編輯和新的。然後,我刷新頁面後,按鈕開始重新工作。我正在使用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