Я пытаюсь загрузить изображение с помощью nativescript-background-http
плагина.
это мой код:
var session = bghttp.session("image-upload");
var request = {
url: 'http://localhost:4200/',
method: "POST",
headers: {
"Content-Type": "application/octet-stream",
"File-Name": imageFile.name
},
description: "{ 'uploading': " + imageFile.name + " }"
};
var task = this.session.uploadFile(path, request);
, когда я пытаюсь собрать свое приложение, оно покажет ошибку:
TypeError: Cannot set property 'NAMESPACE' of undefined
Строка ошибки - именно эта строка:
var task = this.session.uploadFile(path, request);
есть идеи?