Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
100 views
in Technique[技术] by (71.8m points)

javascript - Hide div if database contains value - Angular

I want to check if a postgresql database contains a specific value. If it is true I want to hide a HTML . Is this possible?

Can I hide elements with CSS & JS, or what should I use to hide the div?

Also, How would we add it in the Div like a NgIF statement

Thanks!

question from:https://stackoverflow.com/questions/65922695/hide-div-if-database-contains-value-angular

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

What you can do, vs what's best and the Angular way:

I assume you expect to have an AJAX call similar to:

 $http.databaseAPI.get().subscribe(s => { this.hasValue == s.IsActive; });

Then, you could do a few things:

<div *ngIf="hasValue"></div>

Removes element from the DOM. Potentially very performance detrimental if overused.

<div [hidden]="!hasValue"></div>

Hides the element in the DOM.

<div [ngClass]="{'hideme': hasValue === false}"></div>

Changes the CSS based on an expression, and would require supporting CSS to hide the element.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...