在我的app.js
文件中,我有以下代码:
myApp.directive("inventoryProduct", function ()
{
return {
restrict: "E",
scope : {
name : "@",
price: "@",
onReport:"&"
},
template: "<div><b>{{name}} costs {{ price}}$</b></div>\n<div>\n <button class=\"btn btn-lg btn-danger\" ng-click=\"onReport({IDontKnowA:name,IDontKnowB:price})\">Change name</button>\n</div>"
}
})
查看template
的值,它是一个HTML字符串。
问题
假设我正在选择html字符串/任何字符串 -
Webstorm中是否有任何选项:“将选择移动到新文件”并拥有此新文件名,以便现在文件将是:
myApp.directive("inventoryProduct", function ()
{
return {
restrict: "E",
scope : {
name : "@",
price: "@",
onReport:"&"
},
template: "newFile.js"
}
})