gpt4 book ai didi

javascript - AngularJS - 在 HTML 中调用函数

转载 作者:行者123 更新时间:2023-12-02 22:48:11 24 4
gpt4 key购买 nike

我在我的 custom.js 中创建了一个函数 getAge()。这个函数需要在我的 HTML 页面中调用。

所以我尝试的是这样的:-

<td>{{getAge(user.basicinformation[0].dateofbirth)}}</td>

我看不到任何结果。

如何在 HTML 中调用函数?

最佳答案

因此,为 getAge 创建一个过滤器。

app.filter("getAge", function(){
return function(input){
// Your logic
return output;
}
});

然后在 HTML 中调用它:

<td>{{ user.basicinformation[0].dateofbirth | getAge }}</td>

关于javascript - AngularJS - 在 HTML 中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23798387/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com