最近我使用$.getJSON
向flickr api发送请求以获取一些照片信息(我总共获得了 100 个数据)并在$.getJSON()
的回调函数中,我使用$.each()
and$.get('myServlet.do')
将数据发送到 servlet 然后插入 MySQL 数据库。
我想应该没有问题,但是我发现如果我使用上面的方法,我的数据库会有重复的数据,有谁知道是什么问题?
顺便说一句,当收到 servlet 时,数据是重复的。
如果有人能给我一些建议,将不胜感激......
这是我如何使用的代码$.get()
:
$.getJSON('http://query.yahooapis.com/v1/public/yql?q=select id,title,location.latitude,location.longitude,dates.taken,farm,server,secret from flickr.photos.info where photo_id in' + '(select id from flickr.photos.search(0) where text=\"' + queryText + '\" and has_geo=1 and lat=22.993299484253 and lon=120.20359802246 and content_type=1 and radius=20 and api_key=\"' + appid + '\" limit 100 ) and api_key=\"' + appid + '\"&format=json',
function (data) {
var clientTime = $('#clientTime').html();
$.each(data.query.results.photo,
function () {
console.log(this.id + " " + this.title + " " + this.farm + " " + this.server + " " + this.dates.taken);
$.post('insertphotoinfo.do', {
id: encodeURI(this.id),
title: encodeURI(this.title),
farm: encodeURI(this.farm),
server: encodeURI(this.server),
secret: encodeURI(this.secret),
takendate: encodeURI(this.dates.taken),
latitude: encodeURI(this.location.latitude),
longitude: encodeURI(this.location.longitude),
clientTime: encodeURI(clientTime)
},
function (Result) {
});
});