gpt4 book ai didi

Javascript/Typescript - 导入类的不同语法

转载 作者:行者123 更新时间:2023-12-02 06:26:49 25 4
gpt4 key购买 nike

两种导入 Angular 语法有什么不同:

import partition from 'lodash/fp/partition';
import { partition } from 'lodash/fp/partition';

第一个有效,但另一个不适合我。

谢谢

最佳答案

第一个用于导入标记为默认的内容:

// lodash/fp/partiotion

export const a = 5;
export const b = 'b';
export default {key: 'value'}; // only this line will be imported using the first syntax

第二个允许您指定要导入的内容:

// lodash/fp/partiotion

export const a = 5;
export const b = 7;
export const partition = () => {}; // you are directly importing only this line

关于Javascript/Typescript - 导入类的不同语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58305023/

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