我正在尝试定义这个实时模板:
/*jslint browser:true*/
/*global $module$, jQuery, angular*/
(function () {
'use strict';
angular.module('$module$').directive('$module$$name$', function () {
return {
restrict: 'A',
templateUrl: '/$module$/views/$name$/$name$.html',
controller: ['$scope',
function ($scope) {
$END$
}]
};
});
}());
但是$module$$name
表达会导致无声的错误。
如何在 PhpStorm 的实时模板中连接两个变量?