在查看 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);