使用反引号 (`) 的 Webstorm 字符串模板
Webstorm string templates using backticks(`)
我刚刚升级到最新版本的 WebStorm(11.0)。
我的代码中要求使用该语法:
let path = require(`../../assets/js/templates/${thisTemplate}`);
问题是 WebStorm 说:
Module is not installed
如果我点击 yellow bulb
我会得到建议:
Install '`..'
P.S。之前,当我使用旧版本时(10.X-不记得具体是哪个),我没有错误。
这是新 Node.js 检查缺少模块依赖项的结果。报告了您可以关注的问题:https://youtrack.jetbrains.com/issue/WEB-18919
作为目前的解决方法,请转到首选项 | 手动禁用该检查。编辑|检查 - JavaScript - Node.js - 缺少模块依赖性或在突出显示的错误上按 alt-enter,然后按向右箭头并 select 禁用检查。
我刚刚升级到最新版本的 WebStorm(11.0)。
我的代码中要求使用该语法:
let path = require(`../../assets/js/templates/${thisTemplate}`);
问题是 WebStorm 说:
Module is not installed
如果我点击 yellow bulb
我会得到建议:
Install '`..'
P.S。之前,当我使用旧版本时(10.X-不记得具体是哪个),我没有错误。
这是新 Node.js 检查缺少模块依赖项的结果。报告了您可以关注的问题:https://youtrack.jetbrains.com/issue/WEB-18919
作为目前的解决方法,请转到首选项 | 手动禁用该检查。编辑|检查 - JavaScript - Node.js - 缺少模块依赖性或在突出显示的错误上按 alt-enter,然后按向右箭头并 select 禁用检查。