看后,虽然Arango文件的找不到明确的如何服务器的html文件。这是我计划使用Arango来服务一个文件的唯一情况,因为Nginx做得更好,但Arango需要知道这个页面是否法律的。
controller.get('/:id', function (req, res){
var id = req.urlParameters.id;
if(res.json(db.tire_user.byExample({"uid":id}).toArray()[0]);){
//here needs to server the static html file
}
})
.pathParam('id', userIdSchema);
1条答案
按热度按时间lxkprmvk1#
目前建议的方法是使用fs模块从磁盘加载文件的内容:https://docs.arangodb.com/3.11/develop/javascript-api/fs/