Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

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

rxjs - Angular : How to refresh page automatically and update the data of a component, when DB table gets updated

I am creating an angular application, with a component C1. The main purpose of the component is to get data from the database table and display the same.

Now if any user updates the DB table content, it needs to be reflected into component C1 immediately without refresh.

I found, we can use setTimeOut() method and call the API again and again with certain intervals and update the component. But, I don't think this is the right way as it is not a best choice.

Is there any feature that angular gives for handling the above scenario?

question from:https://stackoverflow.com/questions/65889788/angular-how-to-refresh-page-automatically-and-update-the-data-of-a-component

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

1 Answer

0 votes
by (71.8m points)

If you do not want to use setTimeOut() or the RXJS interval operator then you can create a socket service with socketio or ws.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...