- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在我的 React 应用程序中使用 passport
和 passport-local-mongoose
进行身份验证。登录和注册没有任何问题。但重置密码/更改密码无法正常工作。我有重置密码组件,如下
ResetPassword.js
var React = require("react");
var helpers = require("../utils/helpers");
class ResetPassword extends React.Component {
constructor(props){
super(props);
this.state = {
oldpassword: "",
newpassword: "",
confirmpassword: "",
usertype: "",
}
this.handleUserChange = this.handleUserChange.bind(this);
this.handleLogin = this.handleLogin.bind(this);
}
componentDidMount() {
helpers.getCurrentUser().then(function(response) {
if (response !== this.state.username) {
this.setState({
usertype: response.data.userType
});
}
}.bind(this));
}
handleUserChange(event) {
this.setState({ [event.target.name]: event.target.value});
}
handleLogin(event) {
// just in case we need it
// event.preventDefault();
}
render() {
return (
<div className="container">
<div className="row" id="loginForm">
<div className="col m6 offset-m3 s12">
<div className="card-panel">
<div className="row grey lighten-5">
<div className="col s12 center">
<h4 className="blue-text text-darken-1"><img id="logo" src="/assets/images/logo.png"/><span className="hide-on-med-and-down">Reset Password</span></h4>
</div>
</div>
<form action="/manager/reset-password" method="POST" onSubmit={this.handleLogin}>
<div className="row">
<div className="col s12">
<input
placeholder="Old Password"
type="password"
className="validate"
value={this.state.oldpassword}
name="oldpassword"
onChange={this.handleUserChange}
required />
</div>
</div>
<div className="row">
<div className="col s12">
<input
placeholder="New Password"
type="password"
className="validate"
value={this.state.newpassword}
name="newpassword"
onChange={this.handleUserChange}
required />
</div>
</div>
<div className="row">
<div className="col s12">
<input
placeholder="Confirm New Password"
type="password"
className="validate"
value={this.state.confirmnewpassword}
name="confirmpassword"
onChange={this.handleUserChange}
required />
</div>
</div>
<div className="row">
<div className="col s12">
<input
placeholder="userType"
type="hidden"
className="validate"
value={this.state.usertype}
name="usertype"
onChange={this.handleUserChange}
required />
</div>
</div>
<div className="row">
<div className="col s12">
<button className="btn waves-effect waves-light btn-large blue accent-3 loginButtons" type="submit" value="Submit" name="action">Submit<i className="material-icons right">send</i></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
);
}
};
module.exports = ResetPassword;
和server.js
文件
var passport = require("passport");
var LocalStrategy= require("passport-local");
var passportLocalMongoose = require("passport-local-mongoose");
//Passport
app.use(passport.initialize());
app.use(passport.session());
//change password (passport-local-mongoose)
app.post('/manager/reset-password', function(req, res, next){
passport.changePassword(req.body.oldpassword,req.body.newpassword, function(err) {
if (err){
return next(err)
}
else {
if (req.body.userType === "manager" || req.body.userType === "su") {
res.redirect("/manager");
} else {
res.redirect("/employee");
}
}
});
});
提交时抛出错误:
TypeError: passport.changePassword is not a function at C:\Users\admin\Documents\react_lms\server.js:212:14 at Layer.handle [as handle_request] (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\layer.js:95:5) at next (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\route.js:137:13) at Route.dispatch (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\route.js:112:3) at Layer.handle [as handle_request] (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\layer.js:95:5) at C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:281:22 at Function.process_params (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:335:12) at next (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:275:10) at serveStatic (C:\Users\admin\Documents\react_lms\node_modules\serve-static\index.js:75:16) at Layer.handle [as handle_request] (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\layer.js:95:5) at trim_prefix (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:317:13) at C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:284:7 at Function.process_params (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:335:12) at next (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:275:10) at jsonParser (C:\Users\admin\Documents\react_lms\node_modules\body-parser\lib\types\json.js:101:7) at Layer.handle [as handle_request] (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\layer.js:95:5) at trim_prefix (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:317:13) at C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:284:7 at Function.process_params (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:335:12) at next (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\index.js:275:10) at textParser (C:\Users\admin\Documents\react_lms\node_modules\body-parser\lib\types\text.js:60:7) at Layer.handle [as handle_request] (C:\Users\admin\Documents\react_lms\node_modules\express\lib\router\layer.js:95:5)
原因是什么?怎么解决呢?
package.json
{
"name": "react-shift-scheduler",
"version": "1.0.0",
"description": "Employee management system",
"main": "server.js",
"scripts": {
"build": "webpack -p --progress --config webpack.config.js",
"start": "node server",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --progress -d --config webpack.config.js --watch"
},
"author": "HB,NC,AR,CS",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"json-loader": "^0.5.7",
"loader-utils": "^1.1.0",
"moment-timezone": "^0.5.21",
"mongoose": "^4.7.3",
"morgan": "^1.7.0",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-google-auth": "^1.0.1",
"passport-google-oauth": "^1.0.0",
"passport-linkedin-oauth2": "^1.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.5.0",
"path": "^0.12.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-live-clock": "^2.0.3",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.3.13",
"babel-loader": "^7.0.0-alpha.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"react-hot-loader": "^4.3.6",
"webpack": "2.1.0-beta.25"
}
}
最佳答案
由于 changePassword
是一种模式方法,因此它必须用于模型的实例,而不是模型本身或导入的 PassportLocalMongoose。
Admin.findById(req.user._id)
.then(foundAdmin => {
foundAdmin.changePassword(req.body.old, req.body.new)
.then(() => {
console.log('password changed');
})
.catch((error) => {
console.log(error);
})
})
.catch((error) => {
console.log(error);
});
关于node.js - Passport.changePassword 不是一个函数 - passor-local-mongoose,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52437369/
已经为此工作了几个小时,非常令人沮丧...... router.post('/', passport.authenticate('local-signup', function(err, user,
我正在寻找一种方法让我的客户端使用 facebook JS SDK 进行授权,然后以某种方式将此授权传输到我的 Node 服务器(以便它可以使用 fb graph api 验证请求) 我偶然发现: h
passport.socketio 抛出此错误,同时无法授权用户。 Error: Error: Failed to deserialize user out of session 我已将问题范围缩小到
passport.js 函数passport.serializeUser 和passport.serializeUser 有什么作用?这是维基百科中描述的序列化示例:http://en.wikiped
现代 Passport 和身份证的底部带有machine-readable zone (MRZ),其中包含基本标识信息(可能是OCR友好格式)。 机读区的格式指定了check digits的数量,可帮
我尝试对我的应用程序实现 passport 身份验证策略,但在尝试登录后不断收到以下错误: TypeError: passport.authenticate is not a function at
我正在将 passport 与 loopback 集成,并且工作正常,问题是如何获取访问 token 。 我有一个 web 应用程序(服务于与环回不同的服务器)所以: 发出请求(在环回后端) 这会将我
我使用带有passport-saml 策略 的 Passport 。在策略 上,有一个我想使用的函数。我知道策略是这样使用的: const SamlStrategy = require('passpo
这是我的套接字配置: // set authorization for socket.io io.set('authorization', passportSocketIo.authorize
我是 Passport.js 的新手。我一直在关注以下博客来注册用户 https://scotch.io/tutorials/easy-node-authentication-setup-and-lo
Passport 似乎是简单例份验证、不显眼且不难设置的绝佳选择。我正在构建一个使用 JWT 进行身份验证的 MEAN 堆栈,因此我查看了 Passport JWT。然而,有几件事我很困惑。 1) 假
我已经开始开发一个小项目,在客户端使用 React 和 Redux,后端是用 Node、Express 和 Passport.js 完成的我将尽力描述我几个小时以来所苦苦挣扎的事情。身份验证后,当用户
我正在使用 Passport 本地策略和 Passport Mongoose 本地来创建用户并检查用户身份验证。但是,我想探索使用电子邮件而不是用户名的选项。我按照文件的规定进行操作,但我未经授权。有
我正在使用 Passport 本地策略进行身份验证。在我的快速服务器中,我收到一个注册帖子请求,我应该为新用户将密码保存到数据库。但是我需要在保存到数据库之前对密码进行哈希处理。 但我不确定如何对其进
我正在将 node 与 express + mongoose 一起使用,并尝试将 passport.js 与 restful api 一起使用。 身份验证成功后,我不断收到此异常(我在浏览器上看到回调
我正在尝试在 JWTStrategy 中检查列入黑名单的 JWT token 。 jwtFromRequest 没有采用异步函数,所以我无法在那里检查它。 validate 函数提供对 JWT 负载而
目前,我正在通过 Google 构建登录功能,但我遇到了一些让我感到困惑的问题。 我们可以在一个项目中同时使用 Restful API 和 Graphql API 吗?除了谷歌身份验证,我们需要一些路
我正在使用与 express 配合良好的 Passport 本地策略: passport.use(localStrategy); passport.serializeUser((user, done)
我正在尝试通过passport-facebook 对用户进行身份验证,并且发生了一件非常奇怪的事情,我真的不确定。定义我的路线时,我有这行代码 app.get('/login/facebook',
当我使用 NPM 包“passport-azure-ad”尝试连接到 Azure AD 时,出现以下错误。我已成功连接到 Facebook、Google 和 MSFT Live,成功,但无法弄清楚为什
我是一名优秀的程序员,十分优秀!