gpt4 book ai didi

javascript - 如何修复未捕获的 ReferenceError : require is not defined

转载 作者:行者123 更新时间:2023-12-04 10:06:36 31 4
gpt4 key购买 nike

我试过 fetch获取一些数据。我想跑在chrome浏览器。

当我尝试获取此类数据时,我遇到了类似的错误
require is not defined
我在下面找到了问题,我尝试使用 script标签,

Client on node: Uncaught ReferenceError: require is not defined

但是我不知道应该加载什么样的文件。

如果有人知道script标签解决方案,请告诉我。

谢谢

const fetch = require("node-fetch");

var apikey="https://opentdb.com/api.php?amount=10";

fetch(apikey)
.then(response => response.json())
.then(json => {
// console.log(json);
console.log(json.results[0].question);
});

最佳答案

您不需要导入 fetch,它是 JS 的一部分。

var apikey="https://opentdb.com/api.php?amount=10";

fetch(apikey)
.then(response => response.json())
.then(json => {
// console.log(json);
console.log(json.results[0].question);
});

关于javascript - 如何修复未捕获的 ReferenceError : require is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61555444/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com