如何在flask中播放html网页中的mp3文件?
How to play mp3 files in the html web page in flask?
当我尝试添加时
<audio src="xxx.mp3"></audio>
在html网页上,它总是说:
can't find the source
,好像在服务器上找不到.mp3文件(端口:5000)
我怎么解决这个问题?
我使用flask框架,我是新手,如何在html页面播放本地.mp3文件?
非常感谢!
(只有css,js,image可以通过"/static"文件夹上传?)
这段代码会成功
<audio src="xxx.mp3"controls> <source src="xxx.mp3" type="audio/mp4" ></audio>
当我尝试添加时
<audio src="xxx.mp3"></audio>
在html网页上,它总是说:
can't find the source
,好像在服务器上找不到.mp3文件(端口:5000) 我怎么解决这个问题? 我使用flask框架,我是新手,如何在html页面播放本地.mp3文件? 非常感谢! (只有css,js,image可以通过"/static"文件夹上传?)
这段代码会成功
<audio src="xxx.mp3"controls> <source src="xxx.mp3" type="audio/mp4" ></audio>