将外部Json渲染为玉

Express render external Json to jade

本文关键字:外部 Json      更新时间:2023-09-26

我有一个文件(api.js),当我使用node.js调用终端时,它会给出一个有效的JSON响应。我已经使用request promise来完成http请求,该应用程序是Express的样板。

现在,我想将该响应添加到Jade文件中,并让Jade迭代JSON结果。

如何获得快递使用此文件,然后将其传递给jade?

第二,但不是最重要的,我如何在Jade中获得一个按钮来使用相同的api执行POST请求,或者前端如何调用后端并在前端显示结果?

这是我的api文件api.js:

var rp = require('request-promise');
var initGet = {
  uri: 'http://www.jsonapi.com/get',
  method: 'GET',
  headers: {"Content-Type": "application/json"}
};
var initPost = {
  uri: 'http://www.jsonapi.com/post',
  method: 'POST',
  headers: {"Content-Type": "application/json"},
  data: {},
  resolveWithFullResponse: true
};
var apiCall = function apiCall(options) {
// if request is GET
  if (options.method === 'GET') {
    rp(options)
      .then(function (res) {
        /// I assume this is where the response is sent to jade
      })
      .catch(console.error);
  }
// if request is POST
  else {
    rp(options)
      .then(function (res) {
        /// I assume this is where the response is sent to jade
      })
      .catch(console.error);
  }
};
var apiGet = function apiGet() {
  apiCall(initGet);
};
var apiPost = function apiPost(input) {
  initPost.data = input;
  apiCall(initPost);
};
// example of data in POST
apiPost({
  user: 2,
  event: 'World Cup 2018',
  name: 'Brazil'
});
module.exports = {
  apiGet: apiGet,
  apiPost: apiPost
};

在玉文件中我有:

extends layout
block content
  .title
    h1
      | App
  .ui
    each val in res
    .ui_box
      .ui_box__inner
        .event
          span val.event
        .name
          span val.name
      .drop
        p show drop down
        .arrow
    .ui_box.dropdown
      .submit-button
        p submit
        //submit POST

这是我经过多次尝试和错误后的解决方案!!!

我继续使用请求对外部jSON api进行http调用。

api.js:

var request = require('request'); // require in request
var initGet = {uri: 'http://linkToApi.com/get'};
var initPost = {uri: 'http://http://linkToApi.com/post'};
var apiCaller = function (url, cb) {
  //use request to make the external http call to the JSON api
  request({
    url: url,
    json: true
  }, function (error, response, body) {
    if (!error && response.statusCode === 200) {
      cb(body);// Send body/response to callback
    }
  })
};
// Call the api with a call back
var apiGet = function(cb) {
  return apiCaller(initGet.uri, cb);
};
var apiPost = function(post, cb) {
  return apiCaller(initGet.uri + post, cb);
};
// Export the functions for external access
module.exports = {
  apiGet: apiGet,
  apiPost: apiPost
};

现在是快线:

var api = require('./api');
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
  //call the api apiGet and create callback function
  api.apiGet(function (data) {
    // render to the index.jade and pass the data from api call
    res.render('index', { result :data});
  });
});

最后在index.jade文件中:

block content
  .ui
//*** make sure the indentation is correct 'for' otherwise it doesn't parse!!
    for data in result //iterate through the results
      .ui_box
        .ui_box__inner
          .event
            span #{data.event} // here pick out the jSON you require
          .name
            span #{data.name}

我不能100%确定我是否完全理解你的问题,但我会试一试。

你不会像你说的那样"让express使用这个文件,然后把它传递给jade",你只需要在向服务器发出请求时呈现一个包含一些数据的jade文件。如果你想的话,这个请求可以使用你的模块,但这样表述有助于理解它背后的概念

有关如何将模板引擎与express一起使用的信息,请阅读以下内容:http://expressjs.com/guide/using-template-engines.html

你的终点看起来像这样:

var yourModule = require('./modules/yourModuleFile'); //note you don't need .js
app.get('/', function (req, res) {
  yourModule.apiGet().then(function(result){
    res.render('yourTemplate', result);
  })
})

在写了这个例子之后,我想你可能对如何实际使用promise有一个稍微不同的想法。你没有在模块内"做工作"——你"返回了与结果一起解决的承诺"。

如果你需要更多关于最后一点的解释,请告诉我,我会扩大我的答案。