我對此文檔有點困惑。我可能讀到這個錯誤,但文檔說您可以根據您在觸發器給出的文本字段中定義的內容添加變量到input
對象。根據這張圖片,用戶正在定義3個輸入變量body
,receiveDate
和subject
。 在輸出/輸入中定義的日誌變量
但是,在代碼中,它們引用了一個名爲plainBody
的變量,該變量尚未定義。這將如何工作?
是否有一個對象,我可以註銷,每個字段都在我的觸發器中出現?還是必須使用輸入字段將它們定義爲輸入?
編輯:我也不能讓任何z
圖書館工作。根據這一文件:https://zapier.com/developer/documentation/v2/built-functions-tools/#available-libraries我應該能夠做到像
// let's call http://httpbin.org/get?hello=world with an extra header
var request = {
method: 'GET',
url: 'http://httpbin.org/get',
params: {
hello: 'world'
},
headers: {
Accept: 'application/json'
},
auth: null,
data: null
};
// perform asynchronously
z.request(request, function(err, response){
console.log('Status: ' + response.status_code);
console.log('Headers: ' + JSON.stringify(response.headers));
console.log('Content/Body: ' + response.content);
});
,但我得到的是,這裏說,來自Zapier z is not defined theFunction