问题标签 [javascript-import]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 为nodejs动态导入添加新扩展
如何向 Nodejs 动态导入添加新的文件扩展名?我想添加我自己的文件类型,我们称之为 .jszip。(不,这只是一个例子,我真正想要的与 zip 无关)。
假设我有 package.json:
测试.js:
我正进入(状态:
javascript - 变量已导入,但在使用 ReactJS Redux 时出现导入错误
我正在研究ReactJS
和Redux
。我有一个名为actionTypes.js
. 在这个文件中,我有以下export
声明:
export const REGISTER_USER = 'REGISTER_USER';
现在,我registerReducer.js
使用以下语句将其导入:
import {REGISTER_USER} from '../actions/actionTypes';
但是,当我REGISTER_USER
在文件中使用此变量时registerReducer.js
,会出现以下错误:
Attempted import error: 'REGISTER_USER' is not exported from '../actions/actionTypes'.
当我只导入REGISTER_USER
但不使用它时,会declared but not used
发出警告。我无法理解这个问题。
注意:所有路径和变量名都是正确的。我已经验证过很多次了。
javascript - Hacking the import statement to extend an inherited class
In a library that I wish to extend without modifying its code, several classes inherit from the same imported one. That is in this BaseClass
I would need to overwrite a specific method.
- In the library (written in TypeScript) :
- In the external extension I wish to write :
Is there a way for this new ExtendedBaseClass
to become the parent of all ClassX
s ? At least in a new extended and re-exported version of them without the need to copy their internal code.
javascript - 从异步函数到其他 js 文件的变量 vals
我正在尝试将从 .js 文件 1(即 /events.js)中填充的变量值导出async function
到 .js 文件 2(即 app/loader.js)中的另一个函数
./events.js
./loader.js
javascript - 从 URL 动态导入文件
有没有办法在运行时从外部源加载文件内容?
javascript - ES6-从一个文件到另一个文件的导入方法会出错
我有一个 API utils 文件 React JS,其中声明了如下端点列表-
我想要来自 File1.js 的 api1() 在我的另一个文件(File2.js)中,因此我正在导入它,如下所示 -
这给了我在 File2 中的错误说-
我不确定为什么 api_endpoints 在 File2.js 中未定义。路径是正确的。有人可以帮助我理解这一点。
typescript - InversifyJS 绑定装饰器和惰性注入
我将 InversifyJS 与绑定和惰性注入装饰器一起使用,但出现下一个错误:
未找到 serviceIdentifier 的匹配绑定:Symbol(ClassB)
这是代码:
反转配置文件
我的类型.ts
Main.ts
类A.ts
B类.ts
类型.ts
我试图按照这个问题的答案 Binding classes with property injection to kernel in inversify 但仍然没有成功
javascript - 使用“import * as jQuery”时出现“TypeError: $ is not a function”
我有以下 JavaScript,它执行时没有任何错误或警告:
...但是当我尝试使用我的新$()
功能时...
...我收到此错误:
我究竟做错了什么?
javascript - 如何在javascript上导入和导出异步函数?
我有这个异步功能
我怎样才能使这个功能可以导出?所以我可以在另一个文件中使用import