Uncaught Ошибка: Reference.push не удалось:
Поэтому я использую cryptojs и firebase для отправки зашифрованного сообщения, а затем отображаю это зашифрованное сообщение в окне чата. Я могу отправить обычное сообщение без какого-либо шифрования, но когда я шифрую сообщение. Я получаю эту ошибку:
Uncaught Ошибка: Reference.push не удалось: первый аргумент содержит функцию в свойстве 'messages.text.init' с contents = function () { subtype.$ Super.init.apply(this, arguments);
Я думаю, потому что я нажимаю на шифрование сообщения, это функция. Не уверен, хотя.
messageForm.addEventListener("submit", function (e) {
e.preventDefault();
var user = auth.currentUser;
var userId = user.uid;
if (user.emailVerified) {
// Get the ref for your messages list
var messages = database.ref('messages');
// Get the message the user entered
var message = messageInput.value;
var myPassword = "11111";
var myString = CryptoJS.AES.encrypt(message, myPassword);
// Decrypt the after, user enters the key
var decrypt = document.getElementById('decrypt')
// Event listener takes input
// Allows user to plug in the key
// function will decrypt the message
decrypt.addEventListener('click', function (e) {
e.preventDefault();
// Allows user to input there encryption password
var pass = document.getElementById('password').value;
if (pass === myPassword) {
var decrypted = CryptoJS.AES.decrypt(myString, myPassword);
document.getElementById("demo0").innerHTML = myString;
// document.getElementById("demo1").innerHTML = encrypted;
document.getElementById("demo2").innerHTML = decrypted;
document.getElementById("demo3").innerHTML = decrypted.toString(CryptoJS.enc.Utf8);
}
});
// Create a new message and add it to the list.
messages.push({
displayName: user.displayName,
userId: userId,
pic: userPic,
text: myString,
timestamp: new Date().getTime() // unix timestamp in milliseconds
})
.then(function () {
messageStuff.value = "";
})
.catch(function (error) {
windows.alert("Your message was not sent!");
messageStuff;
});
1 ответ
Посмотрите на эту строку кода:
var myString = CryptoJS.AES.encrypt(message, myPassword);
myString
не строка Я считаю, что это объект CipherParams. ( Чтение из документации здесь.) Затем вы пытаетесь сделать этот объект полем в базе данных:
messages.push({
displayName: user.displayName,
userId: userId,
pic: userPic,
text: myString,
timestamp: new Date().getTime() // unix timestamp in milliseconds
})
Это не сработает. Вам нужно хранить строку вместо объекта там. Попробуйте вызвать toString() возвращаемое значение encrypt(), чтобы сохранить строку, которую вы позже сможете преобразовать обратно в то, что вам нужно:
messages.push({
displayName: user.displayName,
userId: userId,
pic: userPic,
text: myString.toString(),
timestamp: new Date().getTime() // unix timestamp in milliseconds
})