Velocity / PhpStorm实时模板语法

时间:2018-06-07 06:24:13

标签: phpstorm velocity

如何创建这样的路径?由于\$$符号的转义符,因此需要将反斜杠和${variable}保持在一起。

use App\Domain\Entities\${EntityName};

它可能非常简单,但我看不到任何例子。

http://velocity.apache.org/

1 个答案:

答案 0 :(得分:0)

在动态模板中不使用Velocity - 仅在文件和文件中使用。代码模板;但可以在文件模板中使用实时模板。提到这两个“模板”令人困惑......

无论如何......考虑语法${EntityName} ..它必须是文件模板上下文。

要在创建此类新文件时让IDE请求EntityName参数,请使用\\$。最后一行将如下所示:

use App\Domain\Entities\\${EntityName};

enter image description here

enter image description here