2

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

1 回答 1

3

目前建议的方法是使用 fs 模块从磁盘加载文件的内容: https ://docs.arangodb.com/ModuleFs/index.html

于 2015-07-08T09:25:54.557 回答