NodeJS 为什么client-js显示来自API的数据不起作用?

58wvjzkj  于 2023-11-17  发布在  Node.js
关注(0)|答案(1)|浏览(142)

**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和它只是不工作

suzh9iv8

suzh9iv81#

尝试禁用证书检查,因为它不是有效的签名证书

const https = require('https');

fetch('https://localhost:3000/data/' + this.textContent.split('(')[0], {
    agent
})
.then(response => response.text())
.then(value => {
    constantValue.textContent = value;
})
.catch(error => {
    console.error('Error:' + error);
});

字符串

相关问题