책에서 그런 사용법을 접했습니다. 들어오는 매개 변수는 true 또는 false여야 하며 true 반환이 완료되고 false 반환이 보류 중으로 전달됩니다.
이 사용법이 Anglejs에서 특별한 사용법인지 묻고 싶습니다. 이해가 안 돼요. 답변 좀 주세요. 감사합니다!
추신: 제가 직접 작성한 다음 예는 제가 이해할 수 있는 더 간단하고 명확한 사용 방법입니다.
이것은 ng-class 내장 지시문과 함께 사용하기 위한 것 같습니다. 이 경우 className done은 status는 true이고 그렇지 않으면 className pending이 요소에 적용됩니다.ng-class built-in directive, in which case, the className done will be applied to the element when status is true, and className pending will be applied to the element otherwise.
You may see the "Map Syntax Example" section in the document for ng-class
이것은
ng-class
내장 지시문과 함께 사용하기 위한 것 같습니다. 이 경우 classNamedone
은 status는 true이고 그렇지 않으면 classNamepending
이 요소에 적용됩니다.ng-class
built-in directive, in which case, the classNamedone
will be applied to the element whenstatus
is true, and classNamepending
will be applied to the element otherwise.You may see the "Map Syntax Example" section in the document for
ng-class
ng-class
에 대한 문서에서 "맵 구문 예" 섹션을 볼 수 있습니다. 참고로.🎜