我正在使用fetch-mock
来模拟使用fetch的实际组件。 fetch-mock不支持ie11,仅在支持浏览器的情况下才想导入示例组件。我该如何实现?
fetch-mock
来模拟ABCComponent中使用的fetch
。 LoadComponent
const isIE11 = !!window.MSInputMethodContext && !!document.documentMode;
if(!isIE11){
import ABCExampleComponent from './ABCExampleComponent';
}
//or
const ABCExampleComponent = !isIE11 ? import('./ABCExampleComponent') : null;
const LoadComponent = ( ) => {
<ABCExampleComponent />
}
感谢您的建议。
答案 0 :(得分:0)
我不知道我是否完全理解您的问题,但是请尝试一下
const Abc = condition ? require('ComponentA') : require('componentB')