rails 使用 coffee 实现本页动态填写数据

发布于 2022-09-06 05:27:54 字数 817 浏览 30 评论 0

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文