2015-12-02 65 views
0

如何從玉發送文本框的值通過模塊快遞到Node.js的傳遞文本框的值到Node.js的

form(action='/send', method='POST') 
       pre 

        label From : 

        input(type='text',id="Fromtime", name='f1_time') 
        br 
        label To  : 
        input(type='text', id="Totime", name='t1_tdime') 
        br 
        br 
        br 
        label On : 
        input(type='radio', name='on', id='amount_0') 
        label Off: 
        input(type='radio', name='off', id='amount_1') 
        br 
        br 
        br 
        input(type='submit', value='Send !') 

我如何可以使用文本的價值app.js

感謝

回答

0

app.js

app.post('/send', function(req, res) { 
    console.log(req.body.f1_time); // show the value of the text box 
}); 

Docs

+0

我感謝您的幫助。 我試過這個,但它沒有與我一起工作。它給空行。如果我把它如下: app.post('/ send',function(req,res){ console.log req.body); //顯示文本框的值 }); 它給了我{} –

+0

表單已關閉? –

+0

非常感謝,它正在工作 –

相關問題