用户注册问题。节点js

时间:2018-09-14 08:06:00

标签: javascript node.js mongodb

我在使用Node js和mongo db进行注册时遇到问题。当我使用失眠来发布数据时,它返回错误:Here is what it returns

这是我的代码:

(function() {
$('form > input').keyup(function() {

    var empty = false;
    $('form > input').each(function() {
        if ($(this).val() == '') {
            empty = true;
        }
    });

    if (empty) {
        $('#register').attr('disabled', 'disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
    } else {
        $('#register').removeAttr('disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
    }
});
})()
  

这是mongoDb模型:

 db.movies.update(
        {}, 
        {$set: {“movies.$[i].title”: "newTitle", “movies.$[i].rating”: 4}}, 
{arrayFilters: [{i._id: "movieId"}]}}
       )

也许您有某种类似的错误。请帮助我找出此问题的原因。这段代码只工作了一次,我在db中注册了一个用户,但是此后仅返回这种错误。预先感谢您的帮助!

0 个答案:

没有答案