带有参数的管道不会调用

时间:2019-12-03 13:56:20

标签: intershop

当我尝试使用一个参数调用它时,我有一个带有三个可选参数的管道,我收到一条错误消息:

  

怀疑在店面请求中注入了控制参数。要求中止。

这很奇怪,因为我从正在运行的现有管道中复制/粘贴。

谢谢!

1 个答案:

答案 0 :(得分:2)

ControlParameterInjectionDetector进行以下检查:

navigator.mediaDevices.getUserMedia({ audio: true })
  .then(stream => {
    const mediaRecorder = new MediaRecorder(stream);
    mediaRecorder.start();
    const audioChunks = [];
    mediaRecorder.addEventListener("dataavailable", event => {
      audioChunks.push(event.data);
    });
    mediaRecorder.addEventListener("stop", () => {
      const audioBlob = new Blob(audioChunks);
      const audioUrl = URL.createObjectURL(audioBlob);
      const audio = new Audio(audioUrl);
    });
    setTimeout(() => {
      mediaRecorder.stop();
    }, 3000);
  });