jquery 在nodejs中重新加载页面[已关闭]

ljsrvy3e  于 2023-02-12  发布在  jQuery
关注(0)|答案(1)|浏览(181)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

3天前关闭。
Improve this question
我想在收到外部POST调用后重新加载一个nodejs索引页,我使用的是app.post('/refresh', ...)方法,但我不知道如何刷新或重新加载,索引页是app.get('/',...),可以吗?

ia2d9nvy

ia2d9nvy1#

所以,如果我理解正确,你有第三方发送POST请求/刷新端点更新一些数据,之后你希望你的应用程序重新加载页面的权利?
1.你可以实现websockets。www.example.com是一个很好的库。你可以在前端和后端之间建立套接字连接。一旦接收到第三方的post请求,在/refresh方法中,你将发出套接字事件,前端将处理并重新加载页面。在这里阅读更多关于socket.io的信息: socket.io is good library for that. You can setup socket connection between frontend and backend. Once third party post request is received, in /refresh method, you would emit socket event which frontend would process and reload the page. Read more on socket.io here: https://socket.io/ .
1.还有一个叫做pusher的服务,它可以让你实现类似于www.example.com的行为,让你对第三方/刷新调用做出React,并发送事件到前端来重新加载页面 socket.io and let your react to third party /refresh call and send event to frontend to reload page

相关问题