使用JavaScript从HTML表中删除Firebase数据库节点的步骤如下:
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-database.js"></script>
<script>
// 初始化Firebase项目
const firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_AUTH_DOMAIN",
databaseURL: "YOUR_DATABASE_URL",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_STORAGE_BUCKET",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
appId: "YOUR_APP_ID"
};
firebase.initializeApp(firebaseConfig);
</script>
请确保替换上述代码中的YOUR_API_KEY
,YOUR_AUTH_DOMAIN
等为你的Firebase项目的实际配置信息。
<table id="data-table">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<!-- 这里动态生成表格行 -->
</tbody>
</table>
const database = firebase.database();
const tableBody = document.querySelector('#data-table tbody');
database.ref('users').on('value', (snapshot) => {
tableBody.innerHTML = '';
snapshot.forEach((childSnapshot) => {
const key = childSnapshot.key;
const data = childSnapshot.val();
const row = document.createElement('tr');
const nameCell = document.createElement('td');
nameCell.textContent = data.name;
row.appendChild(nameCell);
const emailCell = document.createElement('td');
emailCell.textContent = data.email;
row.appendChild(emailCell);
const deleteCell = document.createElement('td');
const deleteButton = document.createElement('button');
deleteButton.textContent = 'Delete';
deleteButton.addEventListener('click', () => {
deleteNode(key);
});
deleteCell.appendChild(deleteButton);
row.appendChild(deleteCell);
tableBody.appendChild(row);
});
});
function deleteNode(key) {
database.ref('users').child(key).remove()
.then(() => {
console.log('Node removed successfully');
})
.catch((error) => {
console.error('Error removing node: ', error);
});
}
上述代码假设你的Firebase数据库中有一个名为users
的节点,其中包含name
和email
字段。
这样,当你运行这段代码时,它会从Firebase数据库中读取数据并动态地将数据添加到表格中。每一行都会有一个删除按钮,当你点击按钮时,它会调用deleteNode
函数来删除相应的节点。
这是一个使用JavaScript从HTML表中删除Firebase数据库节点的基本流程。
领取专属 10元无门槛券
手把手带您无忧上云