AJAX XMLHttpRequest 问题
我正在使用地理定位 API 来获取用户的坐标,我想将其保存为 PHP 中的变量,并出于参数考虑在同一页面上打印(无需刷新)。
我正在使用 AJAX 将两个 JS 变量从索引页面发送到外部 PHP 页面(我还没有完全排序,但希望你的答案能让我更好地理解这一点)。
在此 PHP 文件中,这两个变量被插入到 API 的 URL 中,然后打印出用户所在的城镇。
我的问题是:如何将其回显到原始索引页?
I'm using the geolocation API to get the user's co-ordinates, which I want to save as a variable in PHP and for argument's sake print on the same page (without refresh).
I'm using AJAX to send two JS variables from and index page to an external PHP page (which I haven't quite sorted yet but hopefully your answers will give me a better understanding of this).
In this PHP file, these two variables are inserted into the URL for an API which then prints out the town the user is in.
My question is: how do I echo this back to the original index page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 文件应该只回显所需的变量,并且 AJAX 调用应该可以在
responseText
中访问该变量。The PHP file should just echo the variable required, and the AJAX call should have access to this in the
responseText
.