可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I'm using WebStorm 7 for Firefox Add-on SDK development.
WebStorm shows a warning: "Unresolved function or method" for require()
.
I want to get rid of the warning.
var pageMod = require("sdk/page-mod");
NOTE:I already configured JavaScript-library (refer /lib/sdk globals).
Environment:
- WebStorm 7.0.2
- Windows 7 64bit
- Firefox Add-on SDK 1.15beta1
回答1:
Do you mean that 'require()'
is not resolved? You need to either add require.js
to your project, or enable Node.js Globals
predefined library in Settings/Languages & Frameworks/JavaScript/Libraries
(Edited settings path by @yurik)
In WebStorm 2016.x-2017.x: make sure that Node.js Core library is enabled in Settings (Preferences) | Languages & Frameworks | Node.js and NPM
In IntelliJ 2018.3.2: go to Settings (Preferences) | Languages & Frameworks | Node.js and NPM
and enable Coding assistance for Node.js
回答2:
Webstorm 11 and 2016.2.3
Enable Node.js Core library
in Webstorm settings.
回答3:
In PHPStorm, it's a bit easier: you can just search for NPM in settings or:
File > Settings > Language & Frameworks > Node.js and NPM
Then click the enable button (apparently in new versions, it is called "Coding assistance for Node").
回答4:
After spending an hour trying to get this to work using all solutions found online, this finally did the trick!
File -> Invalidate Caches/Restart...
回答5:
Working with Intellj 2016, Angular2, and Typescript... the only thing that worked for me was to get the Typescript Definitions for NodeJS
Get node.d.ts from DefinitelyTyped on GitHub
Or just run:
npm install @types/node --save-dev
Then in tsconfig.json, include
"types": [
"node"
]
回答6:
In WebStorm 2018.3 a bit different interface
回答7:
Another solution that helped me a lot is to update all libs in "Node.js and NPM". You need just mark all libs and click blue arrow - 'update'
回答8:
Solution on Webstorm 2016.3
1) click on ALT+F12 (open treminal)
2) run the command: npm install require.js
回答9:
Disable JetBrains Inspections and get the ESLint plugin.
The only thing that File | Invalidate caches and restart
does for me is reset it long enough to trick me into thinking the error is gone. Once the inspections run again the error comes back like a gift that keeps on giving.
I saved myself all that frustration by disabling all JetBrains inspections (Editor
> Inspections
> uncheck JavaScript
) Then I installed the ESLint plugin.
The inspection that causes "Unresolved function method" can be turned off by going to JetBrains inspections (Editor
> Inspections
> JavaScript
) and searching for "Unresolved Javascript" and turning off "Unresolved Javascript function" and "Unresolved Javascript variable"
I killed them all and have edited my code hassle free ever since.
回答10:
Ok, Here I have seen a lot of answers already given,
I want to add some more that are fixed unresolved function/method/variable warning.
That is resolved "unresolved function or method for 'require' and some other warning"
Go -> Preferences-> Languages & Frameworks -> Node.js and NPM, then checkmark the "Coding assistance for Node.js"
If you still see this type of warning, unresolved variable or something like that, you can manually disable these warnings by followings.
Go -> Preferences-> Editor-> Inspections-> JavaScript-> General.
and you will find a list and just unchecked what warning you want to disable and then apply.
回答11:
For WebStorm 2019.3 File > Preferences or Settings > Languages & Frameworks > Node.js and NPM -> Enable Coding assitance for NodeJs
Note that the additional packages that you want to use are included.
回答12:
File->Settings->Languages & Frameworks->JavaScript