如何在节点js上提供mp3文件?

时间:2016-04-30 17:25:00

标签: node.js express mp3

我正在构建简单的Web应用程序,如果用户按下按钮,它将发出声音(服务器端的mp3文件)。

//html file
<script>
  function playSound () {
    document.getElementById('play').play();
  }
</script>
<body>
    <audio id='play', src='http://127.0.0.1:1337/', type='audio/mpeg'
       <button onclick='playSound()' class='btn btn-danger btn-circle btn-lg'>
          <i class='fa fa-5x fa-fire'>
</body>


//app.js
app.get('/music.mp3', function(req, res){
  ms.pipe(req, res, "/music.mp3");
});

如果我在audio属性中插入在线源,但它不能为我的本地服务器文件提供服务。我该如何解决这个问题?

提前致谢!

1 个答案:

答案 0 :(得分:3)

要提供静态文件,如图像,CSS文件和JavaScript文件,音频,请使用Express中的express.static内置中间件功能。

我已经回答了这类问题。请参阅此回答 - res.sendFile(path.join(__dirname, '../public', 'mapv02.html'));