如何将客户端计算机上的纬度经度信息(由 JS 获取)提供给服务器上运行的 Python?
我尝试使用 Google 的 GEOLOCATION api 和 html5 来获取设备位置。两种方法都使用 JavaScript 获取数据。
我还知道我可以使用 JSON 从 Google 的 GEOCODING api 获取街道/城市名称信息。
我还可以从 openstreetmaps/cloudemade 获取特定纬度、经度的地图图块。
现在是个大问题。第 2 点和第 3 点是使用 Python 完成的。如何向服务器上运行的 Python 提供从点 1 的纬度/经度信息?
I tried using Google's GEOLOCATION api and html5 to get device location. Both methods get data using JavaScript.
I also know I am able to get street/city name information from Google's GEOCODING api using JSON.
I am also able to fetch map tiles from openstreetmaps/cloudemade from a specific latitude, longitude.
Big question now. Points 2 and 3 are done using Python. How do I supply lat/long info from point 1 to Python running on server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在浏览器中运行 Javascript 代码,需要与其他地方运行的某些 Python 代码进行通信,那么让它们进行通信的最简单方法是在 Python 中设置 HTTPServer。然后 JavaScript 将能够向 Python 服务器发出 HTTP 请求。
您可能只需扩展 Python 的 内置 HTTP 服务器类 就可以了。
至于发送数据的格式,我建议 JSON,因为 Javascript服务器端的浏览器和 Python 能够相当轻松地“执行 JSON”。
If you are running Javascript code in your browser that needs to communicate with some Python code running somewhere else, then the easiest way to get them to communicate is by settings up an HTTPServer in Python. The javascript will then be able to make HTTP Requests to the Python server.
You'll probably be able to get by by just extending Python's built-in HTTP server class.
As far as the format via which you should send the data, I would recommend JSON, because Javascript in the browser and Python on the server side are able to "do JSON" fairly easily.