码迷,mamicode.com
首页 > Windows程序 > 详细

Meteor 前端 RESTful API 通过后端 API 下载文件

时间:2015-07-21 06:49:46      阅读:463      评论:0      收藏:0      [点我收藏+]

标签:meteor

Meteor 下载文件

问题场景

后端 HTTP 服务器提供一个下载接口,但是需要前端 Meteor 能够给浏览器用户开一个URL来下载这个文件。

举例:在线的Meteor Logo文件就好比后端提供的 RESTful API,然后我们给浏览器客户暴露一个 URL 来下载

Meteor 依赖

安装所有依赖:

meteor add http
meteor add cfs:http-methods
meteor add froatsnook:request

说明:
* cfs:http-methods * 用来给Meteor项目提供一个方便创建 RESTful API 的机会,非常方便。
here for details.

* froatsnook:request * 用来给Meteor项目提供一个便利访问二进制数据的 RESTful API 的机会,也是非常简洁方便,支持同步请求。
here for details.

示例代码

Meteor 服务器端

if (Meteor.isServer) {

  // exports a RESTful API for browser
  HTTP.methods({

    // name RESTful API as "GET /download-meteor-logo"
    ‘/download-meteor-logo‘: function() {

      // A file in streaming, so need to response to browser as a streaming.
      var res = this.createWriteStream();

      // Play as a HTTP client for requesting image.
      // It is Sync way
      var result = request.getSync("https://meteor.com/meteor-logo.png", {
        encoding: null
      });

      var buffer = result.body;
      // TODO: need to set header for response here which transfered by
      // response of logo request.
      res.write(buffer);
      res.end();
    }
  });
} // Meteor.isServer enclosure
  1. 首先得启动 Meteor 服务
meteor --port 3000
  1. 打开浏览器访问 http://localhost:3000/download-meteor-logo

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

Meteor 前端 RESTful API 通过后端 API 下载文件

标签:meteor

原文地址:http://blog.csdn.net/wxqee/article/details/46978219

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!