如何在创建片段时获取文件名(实时模板)

时间:2014-08-08 04:16:14

标签: webstorm

我正在为Meteor中的模板创建一个片段,唯一剩下的就是知道调用该片段的文件名。

我有什么:

type: temp + tab

我得到了什么:

 <template name="">

 </template>

我想要的是什么:

 <template name="">
   file_name.html
 </template>

1 个答案:

答案 0 :(得分:2)

&#34;片段的正确名称&#34;在WebStorm中实时模板

如果您检查some official documentation,您会注意到filename()功能。

知道:

<template name="$END$">
    $FILE$
</template>

现在只需点击&#34;编辑变量&#34; 按钮并在那里使用它:

enter image description here