gpt4 book ai didi

javascript - 需要与导入

转载 作者:太空宇宙 更新时间:2023-11-04 02:44:49 25 4
gpt4 key购买 nike

import相比,当我require时,代码运行没有错误,然后我收到错误: va

app.js:

// require("@babel/polyfill");
// require("@babel/core");
import babel from '@babel/core';
import babelpoly from '@babel/polyfill';
import axios from 'axios';

const BASE_URL = 'https://jsonplaceholder.typicode.com';

const getTodos = async () => {
try {
const res = await axios.get(`${BASE_URL}/todos`);

const todos = res.data;

console.log(`GET: Here's the list of todos`, todos);

return todos;
} catch (e) {
console.error(e);
}
};

根据我的理解,requireimport 具有相同的功能,但它们具有性能权衡。我一定是错的,否则它会双向发挥作用

最佳答案

import 是 ES6 的特性,需要 babel 将 import 转换为 Common JS require。您应该要求 babel 才能使用 import。

关于javascript - 需要与导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60141207/

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