以简单的forms更改ID

如何更改默认id或类,生成简单forms:

= simple_form_for(@account, url: account_url, validate: true, wrapper: :inline, html: { method: :put }) do |f| 

HTML:

 

帐户 – 单一资源。 我想拥有像edit_account这样的id而没有id_hash

html选项中指定id

 = simple_form_for @account, :url => account_url, :wrapper: :inline, html: { method: :put, id: :edit_account } do |f|