我需要能够根据代码返回一些变量。如果代码A然后返回这些。如果代码B然后返回这些。没有代码,请返回这些。
这是我到目前为止所拥有的。
{{1}}
我需要的是这样的事情:
{{1}}
答案 0 :(得分:0)
看起来您没有定义`%gets%` <- function(x, val) {
val <- local(val)
assign(deparse(substitute(x)), val, envir = parent.frame())
}
x1 %gets% {
x = 10;
x + 5
}
变量。但是,course
并不需要定义output
范围内的Code by Zapier
。
我稍微修改了代码以反映您的用例。
var inputData = {'code': 'D2DUK'}
//Remove the line above before pasting in the Code step.
//You will need to configure it in the Zap.
//Defining the variables here.
let course = '';
let company = '';
if (inputData.code === 'WSDCD-D2DUK') {
company = 'Company A';
course = 'ABC'
} else if (inputData.code === '6P1CX-5U2TY'){
company = 'Company B';
course = 'XYZ'
}
else {
company = 'Not Avaliable';
course = 'Not in one';
}
//Returning the JSON object with the keys company and course.
return {company, course};