简体   繁体   中英

AngularJs : how to use express {{}} in ng-if directive.?

How to use the expression in ng-if.?

I have tried this

<span ng-if="formName.{{textboxCntl.name}}.$error.invalidValue && formName.{{textboxCntl.name}}.$dirty"
    id="{{textboxCntl.name}}-error"> Some error message
</span>

I'm using Angular 1.6.9

<span ng-if="formName[textboxCntl.name].$error.invalidValue && formName[textboxCntl.name].$dirty"

Just the way you do in JS

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM