我正在使用Google Sheets API V4来检索JSON中的数据,如下所示。其中包括所有行,甚至是当前电子表格用户界面中未显示的行,因为其中一列进行了过滤。
是否可以只获取显示的行或是否隐藏行的信息?
Google Apps脚本允许使用.hiddenByFilter方法(请参阅https://cloud.google.com/blog/products/application-development/using-google-sheets-filters-in-add-ons)进行此类数据检索。但是,我无法将其包含在我的API查询中。
/* Change the color of links on hover */
.nav>li>a:hover {
background-color: peachpuff;
color: black;
}
/* Add a color to the active/current link */
.nav li.active a {
background-color: darkslategray;
color: snow;
}
有什么解决方法吗?