當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Response.download方法代碼示例

本文整理匯總了TypeScript中express.Response.download方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Response.download方法的具體用法?TypeScript Response.download怎麽用?TypeScript Response.download使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在express.Response的用法示例。


在下文中一共展示了Response.download方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: downloadPdf

  @web.get('/pdf/:name')
  public downloadPdf(req: Request, res: Response) {
    if (req.params.name === undefined) {
      return Route.error(500, 'The input are empty.', res);
    }

    var name: string = req.params.name.trim();
    var tmpPdf: string = `./downloads/pdf/${name}`;

    if (Files.NameIsBad(name)) {
      return Route.error(500, 'The filename is incorect.', res);
    }

    if (!Files.Exist(tmpPdf)) {
      return Route.error(500, 'Cant download pdf file!', res);
    } else {
      res.download(tmpPdf, name, (err: any) => {
        Files.Delete(tmpPdf);
      });
    }
  }
開發者ID:villers,項目名稱:OnlineMarkdownEditorApi,代碼行數:21,代碼來源:routes.ts

示例2: function

 fs.writeFile(path, data, function(err, res2) {
     if (err) throw err;
     res.download(path);
 });
開發者ID:mlal123,項目名稱:ChemistryAgainstHumanity,代碼行數:4,代碼來源:index.ts


注:本文中的express.Response.download方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。