我正在使用该ngInclude
指令来加载 HTML 片段。现在我正在寻找传递动态 URL 的最佳方式。我知道我可以使用字符串连接创建 URL:
<ng-include src="'/foo/' + fooId + '/bar/' + barId + '/baz/' + bazId"></ng-include>
在我看来,这有点丑陋。
ngHref
ngSrc
例如,接受包含标记{{}}
的 URL。恕我直言,这种语法更简洁:
<img ng-src="/foo/{{fooId}}/bar/{{barId}}/baz/{{bazId}}"/>
<a ng-href="/foo/{{fooId}}/bar/{{barId}}/baz/{{bazId}}"/>
有没有更好的方法将动态 URL 传递给 ngInclude?