有什么方法可以将单击的单词(来自 html)存储在服务器中的单独文件中吗?
以下 html 的工作原理是“当用户单击“音乐”一词时,它会显示 html 页面(即“https://snu.ac.kr/music.html”)”
<a href"#" onClick="parent.Content.location='https://snu.ac.kr/music.html'; return
false;">Music</a>
我的问题是:当用户单击该词时在网络中,系统(服务器)有什么方法可以使用python cgi将单击的单词“音乐”写入服务器中的单独文件中?
我需要将 user_clicked 单词存储在单独的文件中以在服务器中执行其他任务,但我坚持继续该部分...任何提示都会非常有帮助。谢谢!
The following html works as "when a user clicks the word "Music", it shows the html page (i.e. 'https://snu.ac.kr/music.html')"
<a href"#" onClick="parent.Content.location='https://snu.ac.kr/music.html'; return
false;">Music</a>
My question is : when the user clicks the word in the web, is there any way for the system (the server) to write the clicked word "music" in the separate file in the server using python cgi?
I need to store the user_clicked words in the separate file to perform other task in the server, but I am stuck in proceeding that part... Any tips would be very helpful. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 Javascript 在后台执行 AJAX 风格的帖子,以保存您的任何信息想要点击一下。然后成功重定向页面。
You should use Javascript to do an AJAX-style post in the background to save whatever information you'd like on click. Then redirect the page on success.