Zapier未转义字符zapier中的代码错误

时间:2019-10-23 12:46:20

标签: zapier

我创建了zap并通过zapier运行javascirpt代码,出现以下错误:

We had trouble sending your test through.

> TypeError: Request path contains unescaped characters

那是什么意思?我的代码或输入数据有问题吗?

我的代码是:

fetch(
  "test.s2.com.tr/Musteri/WebForm?_name=" +
    inputData._name +
    "&_email=" +
    inputData._email +
    "&_phone=" +
    inputData._phone +
    "&_source=" +
    inputData._source +
    "&_projeid=59b8d58fcec19d1f"
)
  .then(function(res) {
    return res.json();
  })
  .then(function(json) {
    callback(null, json);
  })
  .catch(callback);

1 个答案:

答案 0 :(得分:0)

您的问题可能是this question的副本。基本上,您在这4个输入之一中包含不属于url的字符。使用encodeURIComponent可以解决此问题。