使用数据库在js.coffee文件中预先填写表格?

时间:2018-06-20 19:57:16

标签: javascript mysql ruby-on-rails coffeescript

我是Ruby on Rails的新手,我正在尝试编辑此表单,以便“序列号”字段已经显示打开数据库后立即输入到数据库中的序列号。

enter image description here

我的js.coffee文件中的代码如下:

$(document).on 'click', '.add_sn_btn', ->
            parentRow = $(this).closest("tr")
            workorder_num = parentRow.children("td.workorder_num").children("a").text()
            dialog_div = $("#sn_save_div")
            $("#hid_wo_num").val workorder_num
            $("#sn_save").val ""
            todayDate = $.datepicker.formatDate 'mm/dd/yy', new Date()
            $("#prod_date").datepicker 'setDate', todayDate
            dialog_div.data "bin_model", parentRow.children("td.bin_model").children("span").text()
            dialog_div.data "parent_row", parentRow
            dialog_div.dialog 'option', 'title', "Add S/N to W/O "+workorder_num
            dialog_div.dialog "open"

我知道$("#sn_save").val ""行是控制该字段中显示内容的内容。有谁知道我可以从数据库中找到要以这种形式放入的序列号?

我知道这是一个非常具体的问题,所以我知道这是否不值得任何人的时间。如果您愿意,我会尝试提供更多信息。谢谢

0 个答案:

没有答案