IT

여러 요소에 ng-if(또는 기타 조건)를 적용하면서 드라이 상태를 유지하는 방법

itgroup 2023. 3. 19. 18:04
반응형

여러 요소에 ng-if(또는 기타 조건)를 적용하면서 드라이 상태를 유지하는 방법

몇 가지 정보를 표시하고 싶다.<td>같은 조건에 근거한 요소.현재 여러 개로 똑같이 하고 있어요ng-if다음과 같은 지시사항:

<tbody>
  <tr>
    <td> Display unconditionally </td>
    <td> Same here... (imagine more columns) </td>
    ...
    <td ng-if='myCondition'> Display based on condition </td>
    <td ng-if='myCondition'> And the same </td>
    <td ng-if='myCondition'> for plenty of columns </td>
  </tr>
</tbody>

이것이 효과가 있는 동안 사람들은 모든 반복을 알아차리지 않을 수 없다.어떻게 말릴지 생각나는 거 없어요?

ng-if-startng-if-end 사용

<table>
    <tr>
      <td ng-if-start="false" >one</td>
      <td>two</td>
      <td ng-if-end >three</td></td>
      <td>foure</td>
      <td>five</td>

      </tr>
    </table>

플런커

언급URL : https://stackoverflow.com/questions/29252098/how-to-apply-an-ng-if-or-other-conditional-in-multiple-td-elements-while-kee

반응형