angularjs – 如何调用一个函数在“ng-src”

前端之家收集整理的这篇文章主要介绍了angularjs – 如何调用一个函数在“ng-src”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要能够调用一个函数为了运行代码动态检索图像的源。以下代码显示了我想要的示例:
<!-- "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()}}" />

Fiddle

原文链接:https://www.f2er.com/angularjs/145978.html

猜你在找的Angularjs相关文章