我完全是Node.js的新手,任务是从下拉列表中传递用户选择的值(使用的View Engine是Pug)和要插入数据库的值。我正在使用Express.js来做这件事。
请在此提供有用的参考链接或任何示例代码。 请找到我的哈巴狗文件,如下所示
`
doctype html
html
head
script(src="/javascripts/script.js")
link(rel="stylesheet", href="/stylesheets/style.css")
h4=page_title
body
span Sort by
select(name = 'sorting' id = 'sort' onchange = 'onSorting()')
option Sort by
option(value = 'asc') Asc
option(value = 'desc') Desc
option(value = 'top 5') Top 5
option(value = 'bottom 5') Bottom 5
table#desc
tr
th ID
th Name
th Email
each users in userdetail
tr
td= users.id
td= users.name
td= users.email
html
`
和js文件如下
`
function onSorting(){
console.log("hi");
document.getElementsByName('sorting');
window.location = "/users?input=" + $(this).val();
}
`