当前我遇到错误
函数DocumentReference.set()用无效数据调用。不支持的字段值:自定义对象对象(可在“密码”字段中找到)
这是我的代码
const inputPasswordField = document.querySelector("#pwrd");
var encrypted = CryptoJS.AES.encrypt(inputPasswordField.value, "Secret");
const PasswordSave = encrypted;
docRef.add({
Password: PasswordSave,
}).then(function(){
console.log("status saved!");
}).catch(function(error){
console.log("got an error",error);
})
答案 0 :(得分:2)
CryptoJS.AES.encrypt
创建一个包含加密数据的对象。
像这样声明PasswordSave
:
const PasswordSave = encrypted.toString();