我正在尝试使用zapier中的搜索功能字段(https://github.com/zapier/zapier-platform-cli#search-powered-fields)进行更新。
在inputFields中,这就是我想要做的:
inputFields: [
{
key: 'record_resource_uri',
required: true,
label: 'Record (Resource URI)',
dynamic: 'records.resource_uri.resource_uri',
search: 'record.resource_uri',
helpText: 'Provide Resource URI of the record. Ex: /api/1/record/azjhzs5y7q/'
}, // calls project.search (requires a trigger in the "dynamic" property)
(z, bundle) => {
if (!bundle.inputData.record_resource_uri) {
return [];
}
z.console.log(JSON.stringify(bundle.inputData));
return [{
key: 'test',
label: 'Test',
type: 'string'
}];
............
在日志中,我得到{"record_id":"{{51886914___id}}"}
,但是我期望得到的是/api/1/record/azjhzs5y7q/
。
如何从搜索功能字段访问模板的值而不是某些值?