2021年11月

将文件链接地址转为blob

fetch('https://blog.csdn.net').then(res => res.blob()).then(blob => { 
  const a = document.createElement('a')
  a.href = URL.createObjectURL(blob)
  console.log(a.href)
  a.download = ''  // 下载文件的名字
  document.body.appendChild(a)
  a.click()})

目前暂时没有找出是什么原因导致的,但是可以解决:
在目录下mobilevendorLibraryThink的Verify.class.php文件是控制验证码生成的,这个是移动端的验证码生成文件,我们需要在mobileappModulesCaptchaControllers里面的indexController.php的$verify = new \Think\Verify($params);加上ob_end_clean();ob_clean();即可