我需要将明文中的密码交换为散列密码。我正在使用bcryptjs来帮助我。
我已经尝试分配清除哈希密码的密码,但我的bash上出现错误。
我正在尝试制作的代码:
const bcrypt = require('bcryptjs');
const students = require('./students1.json');
const fs = require('fs');
let secureUsers = [];
for (let student of students) {
let salt = bcrypt.genSaltSync(10);
let passHash = bcrypt.hashSync(student.password, salt);
Object.assign(student.password, passHash);
secureUsers.push(secStudent);
}
fs.writeFileSync('secStudents.json', JSON.stringify(secureUsers, null, 2));
console.log('wrote file!');
我得到的错误:
$ node bcryptExample.js
C:\Users\mziad\assignment-mziadeh1\servers\bcryptExample.js:13
Object.assign(student.password, passHash);
^
TypeError: Cannot assign to read only property '0' of object '[object String]'
at Function.assign (<anonymous>)
at Object.<anonymous> (C:\Users\mziad\assignment-mziadeh1\servers\bcryptExample.js:13:12)
at Module._compile (internal/modules/cjs/loader.js:701:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:712:10)
at Module.load (internal/modules/cjs/loader.js:600:32)
at tryModuleLoad (internal/modules/cjs/loader.js:539:12)
at Function.Module._load (internal/modules/cjs/loader.js:531:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:754:12)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
我想要哈希的一个例子:
{
"netid": "ky4531",
"firstName": "Frankie",
"lastName": "Griffith",
"email": "[email protected]",
"password": "t'|x/)$g"
},
{
"netid": "tw0199",
"firstName": "Julietta",
"lastName": "Vargas",
"email": "[email protected]",
"password": "Rc*pKe$w"
}
我需要使用哈希码交换密码,因此我试图分配它。但我收到一个我不明白的错误,我现在无法发现我的代码有任何问题。
您似乎误解了Object.assign函数的工作原理。 Object.assign函数的作用是,它遍历源参数的每个属性(第一个参数后面的参数)并在第一个参数中覆盖它。
您的示例中的问题是您尝试使用字符串作为参数Object.assign('abc', 'def')
调用Object.assign。 JavaScript中的字符串文字实际上是一个字符数组,以及一个以索引作为属性的对象中的数组。默认情况下,不能重新分配字符串属性(索引)(可写:false)。
这是一个演示:
var a = 'abc';
console.log(a[0]) // outputs 'a'
var descriptor = Object.getOwnPropertyDescriptor(a, 0)
console.log(descriptor)
//outputs
/*
{ value: 'a',
writable: false,
enumerable: true,
configurable: false }
*/
Object.assign('abc', 'def');// throws Cannot assign to read only property '0' of object '[object String]'
如您所见,writable设置为false,这意味着您无法重新分配字符串中的每个字符。这解释了为什么错误消息说字符串'abc'的属性'0'不能赋值为新值。
所以解决方案是做student.password = passHash
而不是Object.assign(student.password, passHash);