我需要能够调用一个函数为了运行代码动态检索图像的源。以下代码段显示了我想要的示例:
<!-- "myFunction" exists in the current scope --> <img ng-src="myFunction()" />
我相信这必须是简单的,但我只是在ng-src documentation找不到任何东西!还有谁打过这个?
提前致谢!
指令(基于答案的示例)
其他人推荐了一个指令。我不能发布客户端代码,所以我写了一个简单的例子,看起来像在plunker(see here)。核心指令本身是:
app.directive("imageSource",function (){ return { link: function (scope,element,attrs){ element.attr("src",scope.imageUrlArray[attrs.imageSource]); } }; });
我知道我在这里作为一个例子可能只是用ng-repeat使用ng-src中的变量,但它作为一个指令的样子,如果有必要的例子。
<img ng-src="{{myFunction()}}" />