Fancybox 3 ajax 类型自动附加查询字符串 fancybox=true 到实际 url

Fancybox 3 ajax type auto append query string fancybox=true to the actual url

有没有办法避免 Fancybox 3 自动附加查询字符串 "fancybox=true"?

谢谢

有一个选项 ajax 可用于自定义 ajax 请求,这是默认值:

  ajax: {
    // Object containing settings for ajax request
    settings: {
      // This helps to indicate that request comes from the modal
      // Feel free to change naming
      data: {
        fancybox: true
      }
    }
  }