Importjson排除参数电子表格

时间:2018-02-06 15:02:44

标签: google-apps-script google-sheets custom-function importjson

我如何使用importjson show only result参数?

示例:

=IMPORTJSON("https://api.coinmarketcap.com/v1/ticker/bitcoin", "/name")
"Name"  
"Bitcoin"  

我只需要显示:

"Bitcoin"

我的想法是使用我的博客显示最新报价https://1bitcoinhoje.com

1 个答案:

答案 0 :(得分:-1)

只需解析您的rawHeaders

=ImportJSON("https://api.coinmarketcap.com/v1/ticker/bitcoin","/name","noHeaders")

ImportJSON具有rawHeaders的解析选项:

  • noHeaders:不包含标题,只包含数据
  • debugLocation:将每个值添加到行&它所属的专栏。
  • noInherit:不从父元素继承值
  • noTruncate:不截断值
  • rawHeaders:不要美化标题