为什么会随机出现错误,说 Uncaught DOMException: Failed to execute 'querySelector' on 'Element': '' is not a valid selector

时间:2021-05-10 04:02:11

标签: javascript firebase google-cloud-firestore css-selectors

我创建了一个费用跟踪器应用程序,我将用户的费用记录按日期、标题、金额和一个用于删除该行费用文档的“x”按钮的空列存储在表中。当用户单击“x”按钮时,它会从 Firestore 中删除文档并从行中删除其数据。

有时,当单击“x”按钮时,文档会从 firestore 中删除,但不会从表格中删除,除非刷新页面,这基本上是重新阅读费用文档,因为文档已从 firestore 中删除。

app.js:189 Uncaught DOMException: Failed to execute 'querySelector' on 'Element': '[data-id=6yl9aPRGzLn1FCbXecfI]' is not a valid selector.
/* CURRENT MONTH'S EXPENSE TABLE  */
const table = document.querySelector('#record');

function expenseRecord(user) {
  const docRef = db.collection('users').doc(user.uid).collection(`${year}-${month}`).orderBy('date', 'desc').limit(20);

  docRef.onSnapshot((snapshot) => {
    let changes = snapshot.docChanges();
    changes.forEach((change) => {
      if (change.type == 'added') {
        let tr = document.createElement('tr');
        let date = document.createElement('td');
        let title = document.createElement('td');
        let amount = document.createElement('td');
        let cross = document.createElement('td');

        tr.setAttribute('data-id', change.doc.id);
        cross.setAttribute('class', 'btnDelete');
        date.textContent = change.doc.data().date;
        title.textContent = change.doc.data().title;
        amount.textContent = `$${change.doc.data().amount}`;
        cross.textContent = 'x';

        tr.appendChild(date);
        tr.appendChild(title);
        tr.appendChild(amount);
        tr.appendChild(cross);

        table.appendChild(tr);
        cross.addEventListener('click', (e) => {
          e.stopPropagation();
          let id = e.target.parentElement.getAttribute('data-id');
          db.collection('users').doc(user.uid).collection(`${year}-${month}`).doc(id).delete();
        });
      } else if (change.type == 'removed') {
        let li = table.querySelector('[data-id=' + change.doc.id + ']');
        table.removeChild(li);
      }
    });
  });
}
<table id="record">
  <tr>
    <th>Date</th>
    <th>Title</th>
    <th>Amount</th>
    <th></th>
  </tr>
</table>

这是第 189 行

let li = table.querySelector('[data-id=' + change.doc.id + ']');

1 个答案:

答案 0 :(得分:0)

默认情况下,Firestore 生成的文档 ID 可以包含字母和数字。当 ID 以数字开头时,这会导致属性选择器失败,因为属性值周围没有引号,属性值被视为 CSS @Suppress("kotlin:S117") 标记,不能以数字开头。这就是为什么您只会偶尔看到选择器失败的原因。

在属性值周围添加引号将确保解析器不会根据文档 ID 的性质对其进行不同的处理:

<ident>