2017-10-07 83 views
0

由於Google在其末尾做了一些更改,因此我的股票報價無法正常工作。我已閱讀此鏈接上的信息 google finance json stock quote stopped working但它沒有幫助。股票報價 - Google財經(2017年9月6日後更改)

之前獲取信息的URL是這個 https://finance.google.com/finance/info?client=ig&q=而且我們知道它不再有效。

以下是我的代碼。請有人請提供幫助!

var gstock = ["BOM:500209", "PPY:000001"]; 
for (var i = 0; i < gstock.length; i++) { 
    $.getJSON("https://finance.google.com/finance?client=ig&q=" + gstock[i] + "&callback=?", function (response) { 
     var stockInfo = response[0]; 
     var stockString = '<div class="stockWrapper"> '; 
     stockString += '<span class="stockDirectionValue' + getGlyph(stockInfo.cp) + '"> ' + '</span>'; 
     stockString += '<span class="stockText">BSE:</span>'; 
     stockString += '<span class="stockPrice">' + stockInfo.l + '</span>'; 
     stockString += '<span class="stockChange">' + stockInfo.c + '</span>'; 
     stockString += '</div>'; 
     $('.stockBSE').prepend(stockString); 
    }); 
} 

回答