标签: javascript webstorm
在我的应用程序中,我有一个主要配置文档(对象),它有一些深层嵌套。所以我发现自己经常输入config && config.Exports && config.Exports.accounting && config.Exports.accounting.thisIsWhatIWant。
config && config.Exports && config.Exports.accounting && config.Exports.accounting.thisIsWhatIWant
所以我的问题是,在WebStorm中,我可以编写config.Exports.accounting.thisIsWhatIWant然后使用快捷键或右键单击+某个菜单项以使其自动展开这些吗?
config.Exports.accounting.thisIsWhatIWant