リモート ベンダー API からファイルをダウンロードし、次の投稿に従ってこれらを Azure Blob Storage に投稿できます: Download file via Webservice and Push it to Azure Blob Storage via Node/Express
これは意図したとおりに機能していますが、ベンダー API がフォーム データ (画像の高さと幅など) に基づいて異なるファイルを返すため、ファイルをダウンロードするために行う要求にフォーム データを渡す必要があります。このコードは、Request モジュール ( https://github.com/request/request )を介して渡された URL ごとにファイルを一時ストレージにダウンロードするものです。
var r = request(req.body.url).pipe(fs.createWriteStream(tmpFileSavedLocation))
HTML フォーム経由で収集したフォーム データを node/express 呼び出しに渡して、フォーム データを投稿し、ベンダー API から正しい画像の高さと幅を取得するにはどうすればよいですか?
ここに私のHTMLフォームがあります:
<form id="newForm" class="form-horizontal" data-ng-submit="createContainer()">
<div class="form-group">
<label class="col-lg-2 control-label" for="width">Width *</label>
<div class="col-lg-2">
<input class="form-control" name="width" id="width" type="number" step="0.01" max="20" data-ng-model="formInfo.width" required>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 control-label" for="height">Height *</label>
<div class="col-lg-2">
<input class="form-control" name="height" id="height" type="number" step="0.01" max="20" data-ng-model="formInfo.height" required>
</div>
</div>
<div class="col-lg-10 col-lg-offset-2">
<button type="submit" class="btn btn-primary">Create</button>
</div>
<span>{{formInfo}}</span>
</form>
これが私のAngular Controllerです:
$scope.createContainer = function () {
// Create Blob Container
$http.get('/createcontainer').success(function (data) {
// This passes back the container name that was created via the createcontainer call
var containerName = data;
var filename1 = 'myfile.png';
// Unsure of how to pass the formdata in!!!!
var formData = $scope.formInfo
// Get myfilepng
$http.post('/uploadapifiles', { containerName: containerName, filename: filename1, url: 'http://vendorapi.net/ws/getimage' }).success(function (data) {
console.log(data);
}, function (err) {
console.log(err);
});
});
};
私のserver.jsでのuploadapifiles呼び出しは次のとおりです。
app.post('/uploadapifiles', function (req, res, next) {
var containerName = req.body.containerName;
var filename = req.body.filename;
var tmpBasePath = 'upload/'; //this folder is to save files download from vendor URL, and should be created in the root directory previously.
var tmpFolder = tmpBasePath + containerName + '/';
// Create unique temp directory to store files
mkdirp(tmpFolder, function (err) {
if (err) console.error(err)
else console.log('Directory Created')
});
// This is the location of download files, e.g. 'upload/Texture_0.png'
var tmpFileSavedLocation = tmpFolder + filename;
// This syntax will download file from the URL and save in the location asyns
var r = request(req.body.url).pipe(fs.createWriteStream(tmpFileSavedLocation))
r.on('close', function () {
blobSvc.createBlockBlobFromLocalFile(containerName, filename, tmpFileSavedLocation, function (error, result, response) {
if (!error) {
console.log("Uploaded" + result);
res.send(containerName);
}
else {
console.log(error);
}
});
})
});