作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为我的电子表格创建 Google Apps 脚本。它应该运行一个函数,并根据今天的日期将结果返回到电子表格中的特定工作表。当仅将行附加到事件工作表而不是特定工作表时,它可以正常工作。另外,代码在脚本编辑器中保存得很好,所以我假设没有重大错误。也许我在 Javascript 中的布局是错误的,或者代码中存在我不理解的基本错误。我倾向于我的 IF ELSE 或我如何设置事件电子表格然后工作表,但不确定。任何帮助,将不胜感激。这是代码基础知识:
function CheckDateInsertData() {
function infoDate(){ this gets today's date}
if (infoDate() >= 2016/01/01 && infoDate() <= 2016/01/31) {
function GetData1{
//this retrieves necessary data, working when not using IF ELSE statements and only single active sheet, without calling sheet by name.
var Data =.......... ;
appendData(Data);
function appendData(Data){
var sheet = SpreadsheetApp.getActiveSpreadsheet();
sheet.setActiveSheet(sheet.getSheetByName("January"));
sheet.appendRow(['Date', 'Price', 'Location']);
}
}
} else if (infoDate() >= 2016/02/01 && infoDate() <= 2016/02/29){
function GetData2{
var Data = ........;
appendData(Data);
function appendData(Data){
var sheet = SpreadsheetApp.getActiveSpreadsheet();
sheet.setActiveSheet(sheet.getSheetByName("February"));
sheet.appendRow(['Date', 'Price', 'Location']);
}
}
}
}
最佳答案
这就是我布置代码的方式:
function CheckDateInsertData() {
var todaysDate = infoDate();
var startDate = new Date('2016/01/01');
var endDate = new Date('2016/01/01');
var startDateTwo = new Date('2016/02/01');
var endDateTwo = new Date('2016/02/01');
if (todaysDate >= startDate && todaysDate <= endDate) {
GetData('1'); //Pass '1' as the argument
} else if (todaysDate >= startDateTwo && todaysDate <= endDateTwo) {
GetData('2');
};
};
function appendData(Data, oneOrTwo){
var sheetToGet = oneOrTwo === '1'?"January":"February";//If, then, else
var sheet = SpreadsheetApp.getActiveSpreadsheet();
sheet.setActiveSheet(sheet.getSheetByName(sheetToGet));
sheet.appendRow(['Date', 'Price', 'Location']);
};
function GetData(oneOrTwo) {//this retrieves necessary data
var Data;
if (oneOrTwo === '1') {
Data = ['one'];
appendData(Data, oneOrTwo);
} else {
Data = ['two'];
appendData(Data, oneOrTwo);
};
};
function infoDate() {
return new Date();// this gets today's date
};
我不知道这是否能解决您的问题,但希望它能给您一些想法。
关于javascript - IF ELSE 基于今天的日期将行附加到每月工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35850851/
我是一名优秀的程序员,十分优秀!