使用bcrypt时出现意外的标识符

时间:2018-04-15 21:41:59

标签: javascript bcrypt

await bcrypt.compare(password, element.Password)

这一行给出了一个说法“意外的标识符”。我已经使用

安装了bcrypt

1)Powershell:

  

npm install --global --production windows-build-tools

2)NPM

  

npm install bcrypt

1 个答案:

答案 0 :(得分:0)

包含await bcrypt.compare(password, element.Password)的函数必须声明为async

const aFunction = async (password) => {
  // ...
  await bcrypt.compare(password, element.Password)
}