gpt4 book ai didi

javascript - webpack动态导入.json文件?

转载 作者:行者123 更新时间:2023-11-29 15:55:56 31 4
gpt4 key购买 nike

我正在为 x 种语言使用 React Intl(下面的示例),目前我在设置我的应用程序的地方导入了以下内容:

import { addLocaleData } from 'react-intl';
import locale_en from 'react-intl/locale-data/en';
import locale_de from 'react-intl/locale-data/de';

import messages_en from './translations/en.json';
import messages_de from './translations/de.json';

addLocaleData([...locale_en, ...locale_de]);

...
export const messages = {
en: messages_en,
de: messages_de
}

由于无论使用哪种语言都会导入这些语言文件,所以我的主包 js 文件变得非常大,尤其是 .json 文件。

我如何使用 Webpack 拆分这些语言文件(或使用 CopyWebpackPlugin 将它们复制到我的 dist 文件夹),然后根据当前使用的语言动态导入它们?

该应用是同构的,因此在服务器上运行相同的代码。

最佳答案

我最近一直在做类似的事情,尽管我的项目不需要 SSR。我发现将动态导入语法与 React 的 Suspense 组件配对可以达到预期的效果。这是我发现的工作的粗略概述,至少在我的情况下,它不包括 SSR:

// wrap this around your JSX in App.js:
<React.Suspense fallback={<SomeLoadingComponent />}>
<AsyncIntlProvider>
{/* app child components go here */}
</AsyncIntlProvider>
</React.Suspense>

// the rest is in support of this
// can be placed in another file
// simply import AsyncIntlProvider in App.js

const messagesCache = {};

const AsyncIntlProvider = ({ children }) => {
// replace with your app's locale getting logic
// if based on a hook like useState, should kick off re-render and load new message bundle when locale changes (but I haven't tested this yet)
const locale = getLocale();

const messages = getMessages(locale);
return (
<IntlProvider locale={locale} messages={messages}>
{children}
</IntlProvider>
);
};

function getMessages(locale) {
if (messagesCache[locale]) {
return messagesCache[locale];
}
// Suspense is based on ErrorBoundary
// throwing a promise will cause <SomeLoadingComponent /> to render until the promise resolves
throw loadMessages(locale);
}

async function loadMessages(locale) {
// dynamic import syntax tells webpack to split this module into its own chunk
const messages = await import('./path/to/${locale}.json`);
messagesCache[locale] = messages;
return messages;
}

Webpack 应该将每个语言环境 JSON 文件拆分成它自己的 block 。如果没有,则可能会在动态导入语法到达 webpack 之前将其转换为不同的模块系统(require 等)。例如:如果使用 Typescript,tsconfig 需要 "module": "esnext" 来保留 import() 语法。如果使用 Babel,它也可能会尝试进行模块转译。

单个语言环境的 block 输出看起来像这样;绝对比通过 CopyWebpackPlugin 实现的要多:

(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],{

/***/ "./path/to/en-US.json":
/*!*************************************!*\
!*** ./path/to/en-US.json ***!
\*************************************/
/*! exports provided: message.id, default */
/***/ (function(module) {

eval("module.exports = JSON.parse(\"{\\\"message.id\\\":\\\"Localized message text\\\"}\");//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvbG9jYWxpemF0aW9uL2VuLVVTLmpzb24uanMiLCJzb3VyY2VzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./path/to/en-US.json\n");

/***/ })

}]);

希望这是一个很好的起点,可以与 SSR 一起使用,也可以修改为与 SSR 一起使用。请报告您在该主题上的发现。 🙂

关于javascript - webpack动态导入.json文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58001506/

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