gpt4 book ai didi

javascript - 我基于电子表格列的变量在 Google Apps 脚本中创建 PDF。我无法让变量分配正确的值

转载 作者:行者123 更新时间:2023-12-04 08:13:07 26 4
gpt4 key购买 nike

我有一个 Google 表单,结果会转到 Google 表格。我编写了一个 Google Apps 脚本来从电子表格创建批量 PDF。
表单上有一个复选框,进入电子表格列的结果是
Checked = "检查这里信息是否与上述相同"
Unchecked = ""或 NULL(我不确定是哪个)
这是批量创建这些 PDF 的 javascript。我的问题是它总是以 ☒ 的形式出现在 PDF 上,即使该列中没有任何内容。我尝试了多种方法将它放在不同的地方,使用括号等都无济于事。我是一个 SQL gal,这实际上是我写的第一个 javascript,所以任何帮助表示赞赏。

function CreateBulkPDFs() {
///////////begin function{

const docFile = DriveApp.getFileById("1YAj3MubVRnYUpptEmc92esU0e3vP4KknrgvCO4l9BkI");
const tempFolder = DriveApp.getFolderById("1gmCPUmXsl4iwaVWv-7l43-y82cz2ENfF");
const pdfFolder = DriveApp.getFolderById("1UNHFAlvT5ZMTrIevdsIyf27SgyfO6PQQ");
const currentSheet = SpreadsheetApp.openById("1oMmL0Wfl9FSFX7_xb4RH-qc2o4qJvhlkNMTKMkwHXB8").getSheetByName("Form Responses 1");
const data = currentSheet.getRange(2, 1, currentSheet.getLastRow() - 1, 49).getDisplayValues();
//getRange(row start, column start, # of rows, # of columns)
var chk;

let errors = [];
data.forEach(row => {
///////////begin forEach2(
///////////begin row2{
try {
///////////begin try{
if (row[1] !="Success")
if (row[28] = "Check here if Information is same as above") chk = "☒";
if (row[28] != "Check here if Information is same as above") chk = "☐";
CreatePDF(
row[2],
row[3],
row[4],
row[5],
row[6],
row[7],
row[8],
row[9],
row[10],
row[11],
row[12],
row[13],
row[14],
row[15],
row[16],
row[17],
row[18],
row[19],
row[20],
row[21],
row[22],
row[23],
row[24],
row[25],
row[26],
row[27],
//This is Check here if Information is same as above - row[28]

chk,

row[29],
row[30],
row[31],
row[32],
row[33],
row[34],
row[35],
row[36],
row[37],
row[38],
row[39],
row[40],
row[41],
row[42],
row[43],
row[44],
row[45],
row[46],
row[47],
row[48],
row[2] + " DOB: " + row[3], /*Name of Document*/
docFile,
tempFolder,
pdfFolder
);
errors.push(["Success"]);
}
///////////end try{
catch (err) {
errors.push(["Failed"]);
}
}
///////////end row {
);
///////////end forEach(
currentSheet.getRange(2, 2, currentSheet.getLastRow() - 1, 1).setValues(errors);
}
///////////end function{

最佳答案

您的 if语句试图给 x = y 赋值( row[28] )而不是检查相等性( x == y 或在 JavaScript 中,更常见的是 x === y )。
尝试:

if (row[1] !== "Success")
if (row[28] === "Check here if Information is same as above") chk = "☒";
if (row[28] !== "Check here if Information is same as above") chk = "☐";
=== (而不是大多数其他语言中的 ==)是 JavaScript 的一个特殊特性 - 你 can go down that rabbit hole如果你愿意,但通常最安全的是默认为 ===以确保您不会得到意想不到的结果。
从上面的链接:

The strict equality operator (===) behaves identically to the abstract equality operator (==) except no type conversion is done, and the types must be the same to be considered equal....The == operator will compare for equality after doing any necessary type conversions. The === operator will not do the conversion, so if two values are not the same type === will simply return false. Both are equally quick.


编辑添加 :
根据您对线路 if (row[1] !== "Success") 的意图,可能还有其他问题。这可能会给您带来令人困惑的结果 - 目前此条件仅适用于正下方的行 ( if (row[28] === "Check ... ),但不适用于以下行。在伪代码中看起来像:
if (x)
this line will execute conditionally
this line will not
因此,如果不需要,您可能希望将其删除,或者将要有条件地执行的语句显式括在括号内
if (row[1] !== "Success") {
if (row[28] === "Check here if Information is same as above") chk = "☒";
if (row[28] !== "Check here if Information is same as above") chk = "☐";
}

关于javascript - 我基于电子表格列的变量在 Google Apps 脚本中创建 PDF。我无法让变量分配正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65849963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com