Node Express Jade - Checkbox boolean value

后端 未结 5 535
青春惊慌失措
青春惊慌失措 2021-01-19 01:55

I\'m using Node+Express+Jade to render some webpages. On a form there are 2 checkboxes. When the form is submitted through POST, if the checkbox is checked, I get req.

5条回答
  •  迷失自我
    2021-01-19 02:32

    I have meet this problem today and I have a solution more clean (for me):

    function(req, res){
       req.body.field = Boolean(req.body.field)
    }
    

提交回复
热议问题