最近、 flickr api$.getJSON
にリクエストを送信して写真情報を取得し (合計で 100 個のデータを取得しました)、のコールバック関数で と を使用してデータをサーブレットに送信し、MySQL データベースに挿入します。$.getJSON()
$.each()
$.get('myServlet.do')
問題ないと思いますが、上記の方法を使用するとデータベースのデータが重複することがわかりました。何が問題なのか知っている人はいますか?
ところで、サーブレットが受信されたときにデータが複製されます。
どなたかアドバイスいただけると大変助かります...
これは私がどのように使用するかという私のコードです$.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) {
});
});