railsの編集ページで入力必須ではないカラムを編集ページで未入力のまま保存したいのですが入力を要求され、保存ができません。
VALID_TEL_REGEX = /\A[0-9]+-[0-9]+-[0-9]+\z/ validates :tel, length: {maximum: 30}, format: {with: VALID_TEL_REGEX}
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> <div class="field"> <%= f.label :tel, '電話番号' %><br /> <%= f.text_field :tel, autofocus: true, autocomplete: "tel" %> </div> <% end %>
どのようにすれば編集ページで未入力のまま保存ができるようになるのでしょうか?
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/17 01:47