当请求另一个页面时通知一个页面
我有三页: 第一个将一些信息插入数据库。 第二个在请求时将一些新信息插入数据库 第三个页面显示此信息
当第二个页面更新信息时如何通知第三个页面?
I have three pages:
The first inserts some info into the DB.
The second inserts some new info into the DB, when it is requested
The third shows this information
How to notify the third page when the second updates the info?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从第 2 页重定向到该页面并附加 GET 参数,例如
http://www.your.url/page3?changed=true
检查第 3 页的参数并采取相应的操作。
Redirect to it from page 2 and append GET parameters such as
http://www.your.url/page3?changed=true
Have a check on page 3 for parameters and behave accordingly.