快速渲染外部Json到玉

时间:2015-03-06 08:54:35

标签: javascript json node.js express pug

我有一个文件(api.js),当我使用node.js在终端中调用时,它会提供一个有效的JSON响应。我已经使用request-promise来做http请求,而app是一个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

2 个答案:

答案 0 :(得分:2)

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

我继续使用request来调用外部jSON api。

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}

答案 1 :(得分:0)

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

你不会明快地使用这个文件,然后把它传递给玉石"正如你所说,你只需要向服务器呈现一个带有一些数据的玉文件。如果您愿意,该请求可以使用您的模块,但是以这种方式表达它有助于它背后的概念。

有关如何使用带有快速阅读的模板引擎的信息请阅读: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);
  })
})

在写完这个例子之后,我想你可能对如何实际使用promises略有不同。你不做这项工作"在您的模块中,您将返回以结果"结算的承诺。

如果您需要更多关于这一点的解释,请告诉我,我会扩展我的答案。