1

想知道是否可以在 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 }}">

注意:{{ }}这里的标签是liquidMixture 使用的语法,而不是 Angular 语法。

这可能吗?如果是这样,想法?

4

1 回答 1

0

查看自定义过滤器功能。它们允许您获取输入(在示例中括号中的管道左侧)并返回它的修改版本。语法甚至会非常接近您习惯使用的语法。

于 2014-05-08T17:04:11.260 回答