2
基本上,我需要我的移動應用程序(它是用Trigger構建的)發送Post請求到遠程服務器。具體來說,應用程序生成GPS座標和時間戳,並將數據發送到服務器(使用Ruby on Rails構建),該服務器將數據存儲並存儲。我正在使用Zepto庫發送它。我如何去實現這一目標?用Trigger.io發送的移動應用程序的發送請求
<head> <script type="text/javascript" src="/js/lib/zepto.js"></script></head>
$.post(
url: "http://www.example.com",
data: {
latitude: position.coords.latitude;
longitude: position.coords.longitude;
timestamp: new Date().getTime();},
success: alert("Report Successful");
);
這是實際發送請求的代碼。我不相信這個問題在別處。
看起來你也使用地理定位?請參閱http://docs.trigger.io/en/v1.3/modules/geolocation.html –