目前我遇到一个错误


  使用无效数据调用函数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);
        })

最佳答案

CryptoJS.AES.encrypt创建一个包含加密数据的对象。

像这样声明PasswordSave

const PasswordSave = encrypted.toString();

09-25 17:57