code

AngularJS - HTML의 호출 함수

starcafe 2023. 10. 10. 20:47
반응형

AngularJS - HTML의 호출 함수

기능을 만들었습니다.getAge()내 안에custom.js. 이 기능은 제 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>

부착하다getAge그리고.user에게$scope페이지 컨트롤러에 저장할 수 있습니다.

$scope.user = user;
$scope.getAge = getAge;

컨트롤러에서 이 작업을 수행하고 있는지 확인하고 컨트롤러를 올바르게 설정합니다.이 DOM 보기로 컨트롤러를 설정하고 주입하지 않으면 작동하지 않습니다.$scope컨트롤러에 서비스를 제공합니다.

언급URL : https://stackoverflow.com/questions/23798387/angularjs-call-function-in-html

반응형