0

我正在尝试从 API 输出创建数组。然后将数组过滤到 itemID 指定的一项。下面是我的尝试。我收到一个错误,即函数测试中不存在 jsonArray。我想我需要把它变成一个全局变量或其他东西,但这就是我碰壁的地方。

function onOpen() {
var myUrl = "http://www.gw2spidy.com/api/v0.9/json/all-items/all"
var jsonData = UrlFetchApp.fetch(myUrl);
var jsonArray = JSON.Parse(jsonData);
return jsonArray
}

function test(itemID) {
var jsonFilter = jsonArray.filter(function(itemID){return itemID.data_id==itemID});
var jsonObject = JSON.parse(jsonFilter).result;
var adjustedValue = (jsonObject.min_sale_unit_price / 100);
return adjustedValue;
}

我以前使用以下代码(从其他人那里摘录)使用它,但是每次使用该函数都会进行调用。我正在尝试将每次工作表刷新的调用次数减少到一次调用(这是在 google docs 脚本管理器中)。

// function to return the current sell value for an item (designated by
 // the item’s ID number) from GW2Spidy's API formatted with copper in
 // the tens and hundreds places
function getItemSellValue(itemID) {
 // base URL for the API that will return JSON for the itemID supplied
var myUrl = "http://www.gw2spidy.com/api/v0.9/json/item/" + escape(itemID);
 // fetches the information from the URL in an HTTPResponse
var jsonData = UrlFetchApp.fetch(myUrl);
 // now we convert that response into a string so that we can use it
var jsonString = jsonData.getContentText();
 // now, we turn it into a Javascript object for easier handling
 // *note: I also remove the "result" wrapper object so we can
 // use direct calls on the objects parameters
var jsonObject = JSON.parse(jsonString).result;
 // now I divide the value by 100 in order to format it more like
 // currency. (ie. 126454, which equals 12 gold, 64 silver,
 // and 54 copper will now be displayed as
 // 1264.54)
var adjustedValue = (jsonObject.min_sale_unit_price / 100);
 // finally we return the adjusted min sell value
return adjustedValue;
}

更新 我更新了删除 onOpen() 并切换到缓存服务的代码。我现在收到以下错误:“错误:参数太大:值(第 12 行,文件“gwspidy api”)”。第 12 行是cache.put("gw2spidy-data", jsonData, 1500);数据的大小吗?不知道能过滤多少。完整代码如下。

function test(itemID) {
  var cache = CacheService.getPublicCache();
  var cached = cache.get("gw2spidy-data");
// check if the data is cached and use it if it is
  if (cached != null) {
    var jsonData = cached
    }
//otherwise fetch the data and cache it
  else {
    var myUrl = "http://www.gw2spidy.com/api/v0.9/json/all-items/all"
    var jsonData = UrlFetchApp.fetch(myUrl);
    cache.put("rss-feed-contents", jsonData, 1500);
    }
//put data into an array and filter the result down to the given id, then return the function value
  var jsonArray = JSON.Parse(jsonData);
  var jsonFilter = jsonArray.filter(function(itemID){return itemID.data_id==itemID});
  var jsonObject = JSON.parse(jsonFilter).result;
  var adjustedValue = (jsonObject.min_sale_unit_price / 100);
  return adjustedValue;  
}
4

1 回答 1

2

看起来你有一些想法交叉,给你带来了问题。

  • 该对象jsonArray是在函数范围内声明的onOpen(),超出了test().

  • 触发器函数是一个onOpen()简单的触发器,当它位于电子表格或文档容器绑定脚本中时。从您的问题或代码中不清楚此脚本是在其中一个还是另一个脚本中,还是一个独立的脚本。

  • 一个onOpen()函数不需要return任何东西——调用它的事件管理器将忽略任何返回的值。这不是使值在函数范围之外可用的机制。

  • 如果您的意图是让onOpen()函数填充一个可以被其他函数使用的对象,那么您考虑全局1是正确的......但是您将需要使用其他一些机制来共享该值。(查看缓存服务——它非常适合这个。)


1每个单独的脚本执行都在一个新的执行实例中完成。因此,在代码块之外定义的任何变量(也称为“全局”变量)对于该实例都是唯一的。当触发函数被事件调用时,它会在自己的实例中运行,并且它设置的任何全局值仅对该实例可见;例如,由电子表格或文档 UI 调用的另一个函数将拥有该非范围对象(全局)的自己版本。

于 2013-08-01T19:04:41.910 回答