2016年8月23日学习笔记

股票接口的使用

 
 

控制器

  export.getStock=function(req,res){
  console.log(req.body);
  request({url:http://qt.gtimg.cn/q=s'+req.body.code,encoding:null},function(error,response,data){
    //编码转换
    var str=iconv.decode(data,"gbk");
    //字符串分割
    var str=str.split('~');
    //股票走势图
    var imgUrl='http://image.sinajs.cn/newchart/daily/n/'+req.body.code+'.gif';
    //返回数据
    res.josn({name:str[1],code:str[2],price:str[3],change:str[4],vhangel:str[5],Volume:str[6],transaction:str[7],aggregate:str[9],img:imgUrl});
  });
}

你可能感兴趣的:(2016年8月23日学习笔记)