我需要检查是否使用节点js选中了复选框。我试过了,但是无论如何代码还是会做其他事情。并不是真的“看到”它是否被选中
<input type="checkbox" name="ch1" id="ch1"ng-model="ch1">
//------------------------------------------
router.post('/', function(req, res){
if(req.body.ch1) {...one thing;}
else {...enother thing;}
});