Arango/Foxx服务器静态文件



经过查看,虽然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);

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

相关内容

  • 没有找到相关文章

最新更新