index.js 740 Bytes
/**
 * 微信抽奖控制器
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2016/3/29
 */

var lotteryModel = require('../../models/wx-lottery/index');
var errUtil = require('../../util/error');

exports.index = (req, res) => {

    // 传入参数给lotteryModel发送到后端,获取返回的数据
    lotteryModel({test: 1}).then((data) => {

        // 接收接口返回到的数据,处理后,渲染页面或者返回 JSON
        res.send(data);

    }).catch((err) => {
        errUtil.webError(err, res); // 抓取 Promise 链的错误
    });

    // res.render('wx-lottery/index', {
    //     title: '微信抽奖',
    //     module: 'wxLottery',
    //     version: '0.0.1'
    //
    //     // wxLottery: data
    // });
};