以html格式显示nodejs res.json

以html格式显示nodejs res.json,json,node.js,mongodb,Json,Node.js,Mongodb,试图通过nodejs将从mongo db查询的数据显示到html index.html。 剧本是做什么的?它打开服务器连接,连接到mongodb,并从带有datapicker的webform显示结果查询,通过控制台我可以看到结果,它工作正常,现在我需要将数据显示到web 到目前为止没有结果。有什么建议吗 var express = require("express"); var app = express(); var router = express.Router(); var path =

试图通过nodejs将从mongo db查询的数据显示到html index.html。 剧本是做什么的?它打开服务器连接,连接到mongodb,并从带有datapicker的webform显示结果查询,通过控制台我可以看到结果,它工作正常,现在我需要将数据显示到web

到目前为止没有结果。有什么建议吗

var express = require("express");
var app = express();
var router = express.Router();
var path = __dirname + '/views/';
var fs = require("fs");


const util = require('util')

//lets require/import the mongodb native drivers.
var mongodb = require('mongodb');

//We need to work with "MongoClient" interface in order to connect to a mongodb server.
var MongoClient = mongodb.MongoClient;

// Connection URL. This is where your mongodb server is running.
var url = 'mongodb://localhost/klevin';


router.use(function (req,res,next) {
    console.log("/" + req.method);
    next();
});



router.get("/",function(req,res){

    res.sendFile(path + "index.html");



    var data_e_fillimit = req.param('start_time');
    //console.log(params.startDate)
    console.log('Data e fillimit '+data_e_fillimit)


    var data_e_mbarimit= req.param('endtime_time');
    //console.log(params.startDate)
    console.log('Data e mbarimit '+data_e_mbarimit)


// Use connect method to connect to the Server
MongoClient.connect(url, function (err, db) {

  if (err) {
    console.log('Unable to connect to the mongoDB server. Error:', err);
  } else {
    //HURRAY!! We are connected. :)
    console.log('Connection established to', url);


    // Get the documents collection
    var collection = db.collection('frames');

    //We have a cursor now with our find criteria
    var cursor = collection.find({
      tv: 'tematv', 
      date_created: {"$gte": new Date(data_e_fillimit) , "$lte": new Date(data_e_mbarimit) }});

    //We need to sort by age descending
    cursor.sort({_id: -1});

    //Limit to max 10 records
    cursor.limit(50);

    //Skip specified records. 0 for skipping 0 records.
    cursor.skip(0);


    //Lets iterate on the result
    cursor.each(function (err, doc) {

      if (err) {

        console.log(err);
        //res.json(err);

      } else {

        console.log('Fetched:', doc);
       // res.json({ user: 'tobi' })



      }
    });


  }



});



});


/*router.get("/about",function(req,res){
    res.sendFile(path + "about.html");
});


router.get("/contact",function(req,res){
    res.sendFile(path + "contact.html");
});*/

app.use("/",router);

/*app.use("*",function(req,res){
  res.sendFile(path + "404.html");
});*/

app.listen(3000,function(){
    console.log("Live at Port 3000");
});
使用
ejs
npm安装ejs--save
)软件包尝试如下操作:

app.engine('html', require('ejs').renderFile);    
app.set('view engine', 'ejs');

app.get('/', function (req, res){
    res.render('index.html',{
      foo:bar
    });
});
现在use可以使用传递到index.html的这个对象。use
ejs
npm安装ejs--save
)包尝试如下:

app.engine('html', require('ejs').renderFile);    
app.set('view engine', 'ejs');

app.get('/', function (req, res){
    res.render('index.html',{
      foo:bar
    });
});

现在use可以使用传递到index.html的这个对象使用angularjs来使用视图中的api,这很简单