下面是代码
用户.js:
/*
* POST to adduser.
*/
router.post('/adduser', function(req, res) {
var db = req.db;
db.users.findOne({ inputUserEmail: inputUserEmail }, function(err, user) { if (user) {
console.log("user exists") } else { console.log("user doesn't exist") };
db.collection('userlist').insert(req.body, function(err, result){
res.send(
(err === null) ? { msg: '' } : { msg: err }
);
});
});
下面是插入代码:
全球.js:
// Add User
function addUser(event) {
event.preventDefault();
// Super basic validation - increase errorCount variable if any fields are blank
var errorCount = 0;
$('#addUser input').each(function(index, val) {
if($(this).val() === '') { errorCount++; }
});
// Check and make sure errorCount's still at zero
if(errorCount === 0) {
// If it is, compile all user info into one object
var newUser = {
'username': $('#addUser fieldset input#inputUserName').val(),
'email': $('#addUser fieldset input#inputUserEmail').val(),
'fullname': $('#addUser fieldset input#inputUserFullname').val(),
'age': $('#addUser fieldset input#inputUserAge').val(),
'location': $('#addUser fieldset input#inputUserLocation').val(),
'gender': $('#addUser fieldset input#inputUserGender').val()
}
我是这项技术的新手,这是一个非常基本的问题。但我无法编码。
请告诉我我做错了什么user.js
或如何做。