**Entire Code**代码应该显示/constants目录中所有文件的名称,该目录可以工作,但它应该显示文件的值,该文件不工作,我尝试了大约4个小时甚至更多的故障排除
我对错误部分的看法
document.addEventListener('DOMContentLoaded', function () {
const constantLinks = document.querySelectorAll('.lst');
const constantValue = document.getElementById('constantValue');
constantLinks.forEach(link =>
link.addEventListener('click', function (event) {
event.preventDefault();
fetch('https://localhost:3000/data/' + this.textContent.split('(')[0])
.then(response => response.text())
.then(value => {
constantValue.textContent = value;
})
.catch(error => {
console.error('Error:' + error);
});
}
)
)
});
字符串
**what i was expecting**该网站是一个不同的和较慢的方式来做同样的事情与php和我试图取代它与节点我试图使用console.logs和它只是不工作
1条答案
按热度按时间suzh9iv81#
尝试禁用证书检查,因为它不是有效的签名证书
字符串