看了之后,Arango doc无法找到如何为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);