我使用 jquerymobile 在 mojolicious 框架中开发了一个应用程序。这是关于每 3 秒将 GPS 值更新到 SQLite3 数据库。我尝试发送 http Get 请求来存储 gps 值,例如/v_id/latitude/longitude/updatetime/update
(在 mojolicious 中的 .pm 文件中路由)。我发送的值是:(/100/12.845323/77.4321455/3452687197281/update
浏览器中给出的值)但它不存储任何内容并显示错误There is no route matching the Get request
。
当我尝试喜欢/100/12845323/774321455/3452687197281/update
(不带点)时,它已成功更新。如何在 http 方法中发送请求?