refresh the webpage on database update

前端 未结 2 1546
说谎
说谎 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.

    0 讨论(0)
  • 2020-12-21 17:07

    You could also try a comet application i.e. longpollig - http://www.zeitoun.net/articles/comet_and_php/start

    0 讨论(0)
提交回复
热议问题