为什么Node.js无法提供.woff文件

前端之家收集整理的这篇文章主要介绍了为什么Node.js无法提供.woff文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我出于某些网络原因在中国从谷歌网络字体下载了.woff文件.以前我在Github Pages上尝试过@ font-face,但它确实有效.但是这次花了我一个小时的时间来找到被打破的地方.

我使用Node来使用mime提供静态文件,内容类型似乎是application / x-font-woff,我的代码在CoffeeScript中:

exports.read = (url,res) ->
  filepath = path.join __dirname,'../',url
  if fs.existsSync filepath
    file_content = fs.readFileSync filepath,'utf8'
    show (mime.lookup url)
    res.writeHead 200,'content-type': (mime.lookup url)
    res.end file_content
  else
    res.writeHead 404
    res.end()

由于Github Pages上的.woff的内容类型是application / octet-stream,我只是在我的代码通知该行以使其相同..但它仍然失败:

exports.read = (url,'utf8'
    show (mime.lookup url)
    # res.writeHead 200,'content-type': (mime.lookup url)
    res.end file_content
  else
    res.writeHead 404
    res.end()

最后,我切换到Nginx服务器来提供.woff文件..最后它开始工作了.

但是如何在Node上修复它呢?

在这一行中,fs.readFileSync(filepath,’utf8′)编码设置为’utf8′.它需要是’二进制’.

此外,res.end(file_content)函数需要传递正确的编码.尝试res.end(file_content,’binary’).

我有同样的问题,不得不自己解决,这个答案似乎并不存在于网上任何地方.

原文链接:https://www.f2er.com/nginx/434828.html

猜你在找的Nginx相关文章