Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用生成动态视图的快速框架来提供静态 swf,类似于:
app.get('/*', function(req, res){ // serve swf here });
谢谢
有什么原因你不能只声明一个静态文件夹吗?
app.use(express.static(__dirname + '/public'));
如果您不想使用 Express 静态文件夹,那么您可以从文件系统中读取文件并直接提供它。
res.sendfile('path/to/my.swf');