我在这里有点困惑,所以我正在寻找一些指导。
基本上,我有一个应用程序可以与API通信并收集有关“游览”的信息。第一个请求检索3个游览(ID和名称)并将其存储在数据库中,第二个请求应循环通过3个游览(使用Tour Detail API端点)并获取每个游标的信息(包括lon / lat详细信息)游。
现在,这很好。
我遇到的问题是,每次旅行都有自己的身份证号码。不幸的是,当他们进入数据库时,第二次和第三次旅行使用与第一次旅行相同的身份证号码。
所以我猜测我没有正确传递ID。
任何人都可以帮助正确地进行循环播放吗?
以下代码为整个功能....
// get tours and add them to DB
function loadTours() {
// get the species data
var loader = Titanium.Network.createHTTPClient({
timeout: 30000 /* in milliseconds */
});
loader.onload = function() {
// get the JSON response
var tours = JSON.parse(this.responseText);
var db = Ti.Database.open('myDB');
// truncate the tours table
db.execute('DELETE FROM tours');
for (var i = 0; i < tours.length; i++) {
// Get the data from the feed
var tourID = tours[i].nid;
var tourTitle = tours[i].node_title.toUpperCase();
Ti.API.info(tourID + ' ' + tourTitle);
// check if images have been uploaded
if (tours[i].app_image.uri) {
// removed
} else {
var tourImageFullPath = "";
}
// add the tours to the SQL
db.execute('INSERT INTO tours (tourNID, tourName, tourImageURI) VALUES (?,?,?)', tourID, tourTitle, tourImageFullPath);
// lets do a loop through and insert the tour details
var getTourDetails = Titanium.Network.createHTTPClient({
timeout: 30000 /* in milliseconds */
});
getTourDetails.onload = function() {
var tourDetails = JSON.parse(this.responseText);
db.execute('DELETE FROM tourdetails');
for (var i = 0; i < tourDetails.length; i++) {
var tourNID = tourID;
var tourSpeciesID = tourDetails[i].node_field_data_field_tour_item_nid;
var tourType = tourDetails[i].node_field_data_field_tour_item_type;
if (tourDetails[i].Latitude.length === 0){
var tourLat = '';
} else {
var tourLat = tourDetails[i].Latitude;
}
if (tourDetails[i].Longitude.length === 0){
var tourLon = '';
} else {
var tourLon = tourDetails[i].Longitude;
}
if (tourDetails[i].node_field_data_field_tour_item_type.length === 0){
var tourItemType = '';
} else {
var tourItemType = tourDetails[i].node_field_data_field_tour_item_type;
}
var tourItemTitle = tourDetails[i].node_field_data_field_tour_item_title.toUpperCase();
db.execute('INSERT INTO tourdetails (tourNID, tourItemID, tourLon, tourLat, tourItemTitle, tourItemType) VALUES (?,?,?,?,?,?)', tourNID, tourSpeciesID, tourLon, tourLat, tourItemTitle, tourItemType);
Ti.API.info('TOUR: ' + tourNID + ' ' + tourSpeciesID + ' ' + tourLon + ' ' + tourLat + ' ' + tourItemTitle + ' ' + tourItemType);
}
};
getTourDetails.open("GET", "https://www.myapi.com/tour?nid=" + tourID);
// change the loading message
MainActInd.message = 'Downloading Data';
// show the indicator
MainActInd.show();
getTourDetails.send();
}
// now load the map markers
getMapMarkers();
}; //onload - end the JSON fetch and process for species
// Sets the HTTP request method, and the URL to get data from
loader.open("GET", "https://www.myapi.com/tours");
// change the loading message
MainActInd.message = 'Downloading Data';
// show the indicator
MainActInd.show();
loader.onerror = function() {
// do something if an error
MainActInd.hide();
//alert('tours data error');
var errorDialog = Ti.UI.createAlertDialog({
message: 'We are having an issue importing the Tour data. Please try again later.',
title: 'Whoops'
});
errorDialog.show();
};
// Send the HTTP request
loader.send();
}; // end the get data function
出于安全考虑,我不得不掩盖一些事情,但你应该知道我想要实现的目标!
非常感谢任何帮助!
西蒙
答案 0 :(得分:0)
这里的问题是外循环结束(我在最后一个位置,你的tourID也是如此)。在循环之后,调用send函数的回调,再次使用tourID。但那时它位于最后一个ID,在您的info()中可见。 最快(及其更安全)的方法是在服务器的实际回调中包含id,所以在:
var tourDetails = JSON.parse(this.responseText);
应该是作为json字段的tourID