通过 Node.js JSON 输出从 Asana 任务 API 中提取特定的项目 ID
Extracting a particular Project ID from Asana Task API via Node.js JSON output
使用 Asana Task API,我们可以看到任务所属的项目列表,以及这些项目的 GID 和注释(描述文本)。
期望的结果
这里的全部目标是获取其注释值中包含#websiteprojecttemplate 的项目的 GID。我们需要找到该项目的 GID,然后将其输出,以便稍后在我们的 Zapier 操作中使用该 GID。
体式任务API
使用这个APIURL,我们可以看到API的输出,其中returns项目的数据(包括GID和注释)。我相信这是 JSON。 https://app.asana.com/api/1.0/tasks/{id}?opt_fields=projects.notes
例如:
https://app.asana.com/api/1.0/tasks/1799885428032109?opt_fields=projects.notes
显示为:
当前代码
理想情况下,Node.js Javascript 代码能够 iterate/search/find 带有 #websiteprojecttemplate
的代码,然后输出匹配的 GID。在这种情况下,它将是:1199916857565229
这是我目前的JS代码:
const res = await fetch('https://app.asana.com/api/1.0/tasks/' + inputData.uniqueID + '?opt_fields=projects.notes', {
headers: {
'Authorization': 'Bearer 0/899removedforsecurity24564s'
}
});
const body = await res.json();
const projects = body.data;
output = { id: projects };
输出如下:
"id" : {
"gid" : "1199885428032109",
"projects" : [ {
"gid" : "810573962916457",
"notes" : "CRM project to create custom fields for the CRM task"
}, {
"gid" : "881219806802782",
"notes" : "Helps keep PMs aware of what stage of progress the website projects are at; as well as how many projects each PM has (via saved Asana searches)."
}, {
"gid" : "1129624391492919",
"notes" : "Tracks the stage and progress of converting a lead to a client."
}, {
"gid" : "1140671985497468",
"notes" : "Additional CRM project to create more custom fields for the CRM task"
}, {
"gid" : "1199916857565229",
"notes" : "Created from the #websiteprojecttemplate."
} ]
}
但我需要它输出的不是整个 body 的数据,而是仅输出 gid
值 notes
中的 #websiteprojecttemplate
值。
TL;DR
我们如何更新当前代码,以便它可以遍历 gid
并在 notes
中找到具有 #websiteprojecttemplate
的代码,并输出 gid
有多少?
我认为您的问题归结为如何在数组中查找元素。
const project = projects.projects.find(p => p.notes.includes("#websiteprojecttemplate"));
if (project) {
console.log(project.gid);
} else {
console.log("no matching project");
}
使用 Asana Task API,我们可以看到任务所属的项目列表,以及这些项目的 GID 和注释(描述文本)。
期望的结果
这里的全部目标是获取其注释值中包含#websiteprojecttemplate 的项目的 GID。我们需要找到该项目的 GID,然后将其输出,以便稍后在我们的 Zapier 操作中使用该 GID。
体式任务API
使用这个APIURL,我们可以看到API的输出,其中returns项目的数据(包括GID和注释)。我相信这是 JSON。 https://app.asana.com/api/1.0/tasks/{id}?opt_fields=projects.notes
例如:
https://app.asana.com/api/1.0/tasks/1799885428032109?opt_fields=projects.notes
显示为:
当前代码
理想情况下,Node.js Javascript 代码能够 iterate/search/find 带有 #websiteprojecttemplate
的代码,然后输出匹配的 GID。在这种情况下,它将是:1199916857565229
这是我目前的JS代码:
const res = await fetch('https://app.asana.com/api/1.0/tasks/' + inputData.uniqueID + '?opt_fields=projects.notes', {
headers: {
'Authorization': 'Bearer 0/899removedforsecurity24564s'
}
});
const body = await res.json();
const projects = body.data;
output = { id: projects };
输出如下:
"id" : {
"gid" : "1199885428032109",
"projects" : [ {
"gid" : "810573962916457",
"notes" : "CRM project to create custom fields for the CRM task"
}, {
"gid" : "881219806802782",
"notes" : "Helps keep PMs aware of what stage of progress the website projects are at; as well as how many projects each PM has (via saved Asana searches)."
}, {
"gid" : "1129624391492919",
"notes" : "Tracks the stage and progress of converting a lead to a client."
}, {
"gid" : "1140671985497468",
"notes" : "Additional CRM project to create more custom fields for the CRM task"
}, {
"gid" : "1199916857565229",
"notes" : "Created from the #websiteprojecttemplate."
} ]
}
但我需要它输出的不是整个 body 的数据,而是仅输出 gid
值 notes
中的 #websiteprojecttemplate
值。
TL;DR
我们如何更新当前代码,以便它可以遍历 gid
并在 notes
中找到具有 #websiteprojecttemplate
的代码,并输出 gid
有多少?
我认为您的问题归结为如何在数组中查找元素。
const project = projects.projects.find(p => p.notes.includes("#websiteprojecttemplate"));
if (project) {
console.log(project.gid);
} else {
console.log("no matching project");
}