2016-11-10 35 views
1

當我們在雅虎搜索一個股票搜索股票時,會有搜索建議。例如,當我在搜索中鍵入'TPM'時,我只希望澳大利亞的股票是TPM.AX或其他澳大利亞股票出現在股票的建議中。我不想顯示其他交易所股票代號。雅虎財務查詢API,想限制爲一個國家的搜索結果(Ionic Cordova)

cacheKey = ticker, 
    stockDetailsCache = stockDetailsCacheService.get(cacheKey), 

    query = 'select * from yahoo.finance.quotes where symbol IN ("' + ticker + '")', 
    url = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIService.encode(query) + '.AX&format=json&env=http://datatables.org/alltables.env'; 

    if(stockDetailsCache) { 
     deferred.resolve(stockDetailsCache); 
    } 
    else { 
     $http.get(url) 
     .success(function(json) { 
      var jsonData = json.query.results.quote; 
      deferred.resolve(jsonData); 
      stockDetailsCacheService.put(cacheKey, jsonData); 
     }) 
     .error(function(error) { 
      console.log("Details data error: " + error); 
      deferred.reject(); 
     }); 
    } 

    return deferred.promise; 
    }; 

    var getPriceData = function(ticker) { 

    var deferred = $q.defer(), 

    cacheKey = ticker, 

    url = "http://finance.yahoo.com/webservice/v1/symbols/" + ticker + ".AX/quote?format=json&view=detail"; 

    $http.get(url) 
     .success(function(json) { 
     var jsonData = json.list.resources[0].resource.fields; 
     stockPriceCacheService.put(cacheKey, jsonData); 
     deferred.resolve(jsonData); 
     }) 

我已經把.AX的URL,但仍無法顯示我的應用程序,它是用離子2.目前,來自交易所所有的股票仍顯示澳大利亞股票。 如何讓它只顯示澳大利亞股票的搜索建議?

回答

0
query = 'select * from yahoo.finance.quotes where symbol IN ("' + ticker + '")', 
    url = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIService.encode(query) + '+'.AX'+&format=json&env=http://datatables.org/alltables.env'; 

使用+ 'AX'