Javascript 如何在js中使用vertx的PostgreSQL mod?

Javascript 如何在js中使用vertx的PostgreSQL mod?,javascript,jquery,ajax,postgresql,vert.x,Javascript,Jquery,Ajax,Postgresql,Vert.x,嗨,我是vertx的新手,我想用它来做服务 我将此代码用于我的web服务器 var vertx = require('vertx'); var console = require('vertx/console'); var Server = vertx.createHttpServer(); Server.requestHandler(function (req) { var file = req.path() === '/' ? 'index.html' : r

嗨,我是vertx的新手,我想用它来做服务 我将此代码用于我的web服务器

  var vertx = require('vertx');
  var console = require('vertx/console');

  var Server = vertx.createHttpServer();

  Server.requestHandler(function (req) {
      var file = req.path() === '/' ? 'index.html' : req.path();
      if (file === '/foo') {
          foo(req);
      }    
      else{ 
       req.response.sendFile('html/' + file);
      }
  }).listen(8081);

  function foo(req) {    
      req.bodyHandler(function (data) {
            //data is json {name:foo, age:13}   i want insert this in any table in postgre
            //do  
           var dataresponse= messagefrompostgre;//e: {status:"ok", code:200, message: "its ok"}
          req.response.putHeader("Content-Type", "application/json");                            
          req.response.end(dataresponse);
      });
  }
这是我的事件点击按钮

$.ajax({
                data:   {name:foo, age:13} ,
                url:   '/foo',
                type:  'post',
                dataType: 'json', 
                complete:  function (response) {
                        alert(JSON.stringify(response));                      
                }
          });
我发现了如何做到这一点:

  var vertx = require('vertx');
  var console = require('vertx/console');//TODO: remove
  var eventBus = vertx.eventBus;

  var Server = vertx.createHttpServer();

  Server.requestHandler(function (req) {     
      var file = req.path() === '/' ? 'index.html' : req.path();
      if (file === '/foo') {
          foo(req);
      }
      else{
       req.response.sendFile('html/' + file);
      }
  }).listen(8081);  

  function foo(req) {    
      req.bodyHandler(function (data) {
            //data is json {name:foo, age:13}                   
            var jsona={
                      "action" : "raw",
                      "command" : "select * from test"
                    }             

            eventBus.send("PostgreSQL-asyncdb",jsona, function(reply) {
            req.response.putHeader("Content-Type", "application/json");                          
            req.response.end(JSON.stringify(reply));                
            }); 
      });
  }   
这份申报表:

{"message":"SELECT 6","rows":6,"fields":["testt"],"results":[["lol"],["lolŕ"],["lol2"],["lol2"],["testlol"],["testlolp"]],"status":"ok"}

这个问题缺少一个重要部分:问题描述。