chrome未捕获的SyntaxError:gzip压缩的js文件无效或意外的令牌

时间:2019-04-03 17:08:33

标签: google-chrome http express gzip

我有用于提供gziped js文件的快递服务器。

但是chrome给我的错误是:

enter image description here

enter image description here

标题:

enter image description here

节点服务器代码段:

const sendJs = (res, num = undefined) => {                                                                              
  if(env === 'prod'){                                                                                                   
    res.set('Content-Encoding', 'gzip')                                                                                 
    res.set('Content-Type', 'text/javascript')                                                                          
  }                                                                                                                     

  const fileNum = num ? `${num}.` : ''                                                                                  

  res.sendFile(path.join(jsDir + `${fileNum}${jsFileName}.${jsFileEnd}`))                                               
} 

0 个答案:

没有答案