Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

如何将多个文件的export const引入到一个文件?

现在我有多个api文件, 如下

a.ts
import { GET } from "@/utils/http";
const NORMAL = "/__normal__";

export const loadMenus = () =>
    GET(`${NORMAL}/user/v1/modules?page=home&module=top_menu&role=`);


b.ts
import { GET, POST } from "@/utils/http";
const NORMAL = "/__normal__";

export const login = (params: any) => POST(`${NORMAL}/user/v1/account/login`, params);

然后在
index.ts

import * as commonApi from "./common";
import * as accountApi from "./account";

export default {
    ...commonApi,
    ...accountApi
}

使用时

import Api from "@/api/index";
 Api.loadMenus();

我想要实现的是在使用时

import { loadMenus } from "@/api/index";
loadMenus();

这样的话我该怎么处理,


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

index.ts

export * from "./common";
export * from "./account";

刚写错了


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.5k users

...