想知道是否可以在 Angular 中创建动态资产标签,如果可以,如何创建。
这是背景:我一直在使用Mixture.io进行模板制作,并且已经习惯了它提供的易用性和灵活性。我现在正在处理我的第一个 Angular 项目,想知道是否可以在 Angular 中重新创建 Mixture 的“魔法资产标签”的功能。这是它在 Mixture 中的样子:
//Example returning a full script tag:
{{ "index.js" | asset_url | script_tag }}
//Example returning a full stylesheet tag:
{{ "styles/index.css" | asset_url | stylesheet_tag }}
//Example using a standard stylesheet tag:
<link href="{{ "index.css" | asset_url }}" rel="stylesheet" type="text/css" />
//Example using a standard image tag:
<img src="{{ "example.jpg" | asset_url }}">
注意:{{ }}
这里的标签是liquid
Mixture 使用的语法,而不是 Angular 语法。
这可能吗?如果是这样,想法?