微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

动态字段中使用的卷曲未解析

如何解决动态字段中使用的卷曲未解析

我有一个 nodeAliasPath 输入字段可以改变其他字段:

inputFields: [
{
  key: 'nodeAliasPath',type: 'string',required: true,label: 'Node alias path',helpText: 'The path of the page to update. For example,"/Blogs/Food"',altersDynamicFields: true
},...

我的其他(动态)字段使用 getPageData 调用 nodeAliasPath生成 z.request

inputFields: [
async function (z,bundle) {
  const pageData = await getPageData(z,bundle,bundle.inputData.nodeAliasPath,bundle.inputData.culture);
  if(!pageData) throw new z.errors.HaltedError(`Page not found. Please check the Node Alias Path and Culture.` );
  else return await getPageColumnsField(z,pageData["NodeClassID"],pageData);
},...

updatePage 函数使用 {{bundle.inputData.nodeAliasPath}} 获取提供的输入:

const options = {
        url: `{{bundle.authData.website}}/rest/content/currentsite`
            + `/${data.DocumentCulture}/document{{bundle.inputData.nodeAliasPath}}`,

但是,当请求运行时,我可以在 Zapier 平台的监控选项卡中看到执行的请求实际上是 /document{{114648603__NodeAliasPath}}。只有当我尝试从上一步中提取值时才会发生这种情况 - 如果我输入某个值,请求看起来很完美并且运行良好。

如何解析 URL 中的卷曲以从另一个步骤获取字段的实际值?当前步骤中的动态字段依赖于该请求的结果。

解决方法

我们在 this GitHub issue 中讨论过这个问题,但要点是在 Zap 编辑器中,自定义字段不能依赖于映射字段

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。