rails 使用 coffee 实现本页动态填写数据
在rails 项目中
有2个表
create_table "cities", force: :cascade do |t|
t.string "name"
t.integer "province_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["province_id"], name: "index_cities_on_province_id"
end
create_table "provinces", force: :cascade do |t|
t.string "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
在cities/index.html中想实现
前一个选择框可以选择某个省,第二个选择框自动提供所选省份的地级市(县)
<%=
collection_select(:city, :province_id, Province.all, :id, :name_with_initial, { prompt: true })
%>
<%=select_tag "city", option_groups_from_collection_for_select(@province, :cities, :name, :id, :name, 30)%>
要怎么做
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论