1. ホーム
  2. node.js

[解決済み] SailsのstartDownloadが機能しない - TypeError: sails.startDownload is not a function

2022-02-09 18:23:10

質問

私は以下のことを行っています。 https://sailsjs.com/documentation/reference/response-res/res-attachment

私のコードはこんな感じです。

let file = require('path').resolve(document.path)
if (fs.existsSync(file)) {
  this.res.attachment(document.name)
  let downloading = await sails.startDownload(document.fsPath)
  return exits.success(downloading)
}

終了します。

  exits: {
    success: {
      statusCode: 200,
      description: 'Document has been sent for download.'
    },
  }

エラーが発生します TypeError: sails.startDownload is not a function

Sailsのバージョン 1.1.0

解決方法は?

をインストールしましたか? セイルズフックアップロード にあるように ドキュメント リンクしているのでしょうか?