请求开机自检环回 JS 的未处理错误



请帮帮我,当我的函数返回回调时,我正在尝试在环回js上创建远程方法,显示错误">请求POST未处理的错误"并使我的响应代码返回到500响应代码,但仍然显示我的结果数据。

这是我的代码

'use strict';
// Define Variable Depedencies Here
var jwt = require('jsonwebtoken')
module.exports = function(Account) {
Account.login = function(username, password, cb) {
var data = {
username: username,
password: password
}
var token = jwt.sign({exp: Math.floor(Date.now() / 1000) + (60*60), data: data}, 'secret');
cb(token)
// console.log(token)
}
Account.remoteMethod('login', {
description: ['Login With Your Credentials'],
http: {path: '/login', verb: 'post'},
accepts: [
{arg: 'username', type: 'string'},
{arg: 'password', type: 'string'}
],
returns: {arg: 'token', type: 'string'}
})
};

这是我的错误:

D:PROJECTBackend>node .
Web server listening at: http://localhost:3000
Browse your REST API at http://localhost:3000/explorer
Unhandled error for request POST /api/Accounts/login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1MDE4NTM2MTYsImRhdGEiOnsidXNlcm5hbWUi
OiJhZG1pbiIsInBhc3N3b3JkIjoiMTIzNDUifSwiaWF0IjoxNTAxODUwMDE3fQ.os6ijfYyF8losGywdnrVKrHW3-DYZFSwlOVUvHyPIOk

提前致谢

我发现了我的问题:)

我在回调上放了">错误">

所以这是正确的代码

'use strict';
// Define Variable Depedencies Here
var jwt = require('jsonwebtoken')
module.exports = function(Account) {
Account.login = function(username, password, cb) {
var data = {
username: username,
password: password
}
var token = jwt.sign({exp: Math.floor(Date.now() / 1000) + (60*60), data: data}, 'secret');
cb(err, token)
// console.log(token)
}
Account.remoteMethod('login', {
description: ['Login With Your Credentials'],
http: {path: '/login', verb: 'post'},
accepts: [
{arg: 'username', type: 'string'},
{arg: 'password', type: 'string'}
],
returns: {arg: 'token', type: 'string'}
})
};

最新更新