大家好,我不知道如何解决这个问题。我有一个传递HTML img元素数组的函数。它循环遍历这些图像,使用空白的“无图像”缩略图检查图像的SRC属性。然后,它使用img标签ALT属性作为查询执行图像搜索。然后,搜索上的回调函数将Img SRC替换为第一个图像结果。
我在将正确的图像与相应的搜索回调匹配时遇到问题。现在我只是创建数组并将返回的搜索与图像的索引相匹配。由于多个搜索同时运行,根据图像的大小或网络延迟,它们可以无序地触发回调并混合图像。
我需要一种方法,让我可以将个别搜索与html元素配对。使用searchController和多个imageSearch对象可以实现吗?
以下是我正在使用的功能的示例
google.load('search', '1');
function googleFillBlanks(jqueryImages){
//namePairs holds the images matching alt text and attachedCount is used for matching up once the call back is fired
var attachedCount = 0;
var namePairs = [];
function searchComplete(searcher){
if (searcher.results && searcher.results.length > 0) {
var results = searcher.results;
var result = results[0];
$("img[alt='"+namePairs[attachedCount]+"'] ").attr('src', result.tbUrl);
//jqueryImages.get(0).attr('src', result.tbUrl);
attachedCount++;
}
}
var imageSearch = new google.search.ImageSearch();
//restrict image size
imageSearch.setRestriction(google.search.ImageSearch.RESTRICT_IMAGESIZE,
google.search.ImageSearch.IMAGESIZE_SMALL);
imageSearch.setSearchCompleteCallback(this, searchComplete, [imageSearch]);
jqueryImages.each(function(){
if($(this).attr('src').substr(-12,8) == 'no_image')
{
namePairs.push($(this).attr('alt'));
imageSearch.execute($(this).attr('alt'));
}
});
}
答案 0 :(得分:1)
这就是我最后做的任何人感兴趣和自我提醒
google.load('search','1');
function checkImages(){
// Here is the closure!
var myClosure = function(img){return function(){
if(this.results&&this.results.length>0){
var result = this.results[0];
img.src = result.tbUrl;
img.alt = result.titleNoFormatting;
}
}};
var imgs = document.getElementsByTagName('img');
for(var i=0;i<imgs.length;i++){
var img=imgs[i];
if(img.src.match(/no_image.{4}/)){
var is = new google.search.ImageSearch();
is.setSearchCompleteCallback(is, myClosure(img));
is.execute(img.alt);
}
}
}
google.setOnLoadCallback(checkImages);