预期“有效载荷”是一个普通对象:MEAN

raj*_*_tx 8 javascript node.js express mean-stack angular

这是我来自路由文件(users.js)的代码

User.findOne({linkedin_id: req.body.linkedin_id}, function(err, linkedinUser) {
    if(err) {
      console.log('err in finding linkedin user '+err);
    }
    // if user exits
    else if(linkedinUser) {
      console.log('user exist');
      const token = jwt.sign(linkedinUser, config.secret, {expiresIn: 604800});
      res.json({success: true, token: 'JWT '+token, user: {
          id: linkedinUser._id,
          linkedin_id: linkedinUser.linkedin_id,
          name: linkedinUser.name,
          username: linkedinUser.username,
          email: linkedinUser.email,
          lkprofilePic: linkedinUser.profilePic
        }, msg: 'user exits'
      });
    }
    // if user doesn't exist
    else {
      User.create({
        linkedin_id: req.body.linkedin_id,
        name: req.body.name,
        username: req.body.username,
        email: req.body.email,
        lkprofilePic: req.body.lkprofilePic
      }, function(err, result) {
        if(err) {
          res.json({success: false, msg: 'failed to add'})
          console.log('error in adding the data '+err);
        }
        else if(result) {
          const token = jwt.sign(linkedinUser,config.secret,{ expiresIn: 604800 });
          res.json({success: true, token: 'JWT '+token, user: {
            id: result._id,
            linkedin_id: result.linkedin_id,
            name: result.name,
            username: result.username,
            email: result.email,
            lkprofilePic: result.profilePic
          }, msg: 'User added '  });
        }
      });
    }
  });
Run Code Online (Sandbox Code Playgroud)

这从 config -> secret

module.exports = {
    secret: 'bigfish'
  }
Run Code Online (Sandbox Code Playgroud)

这是我在 nodejs 控制台中遇到的错误

接收链接数据 D:\product\project-1\node_modules\mongodb\lib\utils.js:132 throw err; ^

错误:预期“有效负载”为普通对象。在验证 (D:\product\project-1\node_modules\jsonwebtoken\sign.js:34:11) 在 validatePayload (D:\product\project-1\node_modules\jsonwebtoken\sign.js:56:10) 在对象.module.exports [as sign] (D:\product\project-1\node_modules\jsonwebtoken\sign.js:108:7) 在 D:\product\project-1\routes\users.js:415:29 在功能。(D:\product\project-1\node_modules\mongoose\lib\model.js:4177:16) 并行 (D:\product\project-1\node_modules\mongoose\lib\model.js:2230:12)在 D:\product\project-1\node_modules\mongoose\node_modules\async\internal\parallel.js:35:9 在 D:\product\project-1\node_modules\mongoose\node_modules\async\internal\once.js :12:16 在 iteratorCallback (D:\product\project-1\node_modules\mongoose\node_modules\async\eachOf.js:52:

但是数据被保存在数据库中并且不返回

res.json({success: true, token: 'JWT '+token, user: {
            id: result._id,
            linkedin_id: result.linkedin_id,
            name: result.name,
            username: result.username,
            email: result.email,
            lkprofilePic: result.profilePic
          }, msg: 'User added '  });
Run Code Online (Sandbox Code Playgroud)

Nip*_*pek 24

问题在于您签署令牌的方式

您使用的用户是从mongoose返回的用户,因此您需要使用YOUR_USER.toJSON。如果用户没有从猫鼬使用来JSON.stringify(YOUR_USER)代替

将您的代码更改为

const token = jwt.sign({linkedinUser}, config.secret, {expiresIn: 604800});
//if you want to set expiration on the token
Run Code Online (Sandbox Code Playgroud)

或者

const token = jwt.sign(linkedinUser.toJSON(), config.secret);
//if you just want to sign the token without setting the expiration
Run Code Online (Sandbox Code Playgroud)