refresh the webpage on database update

前端 未结 2 1570
说谎
说谎 2020-12-21 16:29

I want to reflect the changes that occur immediately in the table in a database, on the webpage. I have been reading about websockets but I am not very clear about how to im

2条回答
  •  一生所求
    2020-12-21 16:57

    For pushing data to the users I tried with success http://pusherapp.com/.

    As of how to reflect the change on the database to PusherApp, it depends on your architecture. If you have a beforeSave() callback, or you centralize SQL queries on one file, that's the place to handle it, if not you'll have to track all the places where you need to implement this behavior.

提交回复
热议问题