0

サーバーへのファイルのアップロードに問題があります。デモで提供されている構造に従います。

file.upload = this.Upload.upload({
          url: "/api/license/upload",
          method: "POST",
                 data: {
                     name:file.name
                 },
                 file: file
          }).then(function (resp:any) {
               console.log('Success ' + resp.config.data.file.name + 'uploaded. Response: ' + resp.data);
            }, function (resp:any) {
                 console.log('Error status: ' + resp.status);
            }, function (evt:any) {
                var progressPercentage = parseInt(evt.loaded / evt.total);
                 console.log('progress: ' + progressPercentage + '% ' + evt.config.data.file.name);
          });
 }

ただし、ファイルをアップロードしようとすると、サーバーからの応答で 200 (これで問題ありません) が返されますが、アプリは次のようにクラッシュします。

SyntaxError: Unexpected token Y
    at Object.parse (native)
    at vc (http://localhost:4000/dist/vendor.min.js:20:480)
    at Zb (http://localhost:4000/dist/vendor.min.js:87:229)
    at http://localhost:4000/dist/vendor.min.js:88:143
    at m (http://localhost:4000/dist/vendor.min.js:12:322)
    at dd (http://localhost:4000/dist/vendor.min.js:88:125)
    at d (http://localhost:4000/dist/vendor.min.js:89:380)
    at http://localhost:4000/dist/vendor.min.js:124:113
    at n.$eval (http://localhost:4000/dist/vendor.min.js:138:221)
    at n.$digest (http://localhost:4000/dist/vendor.min.js:135:233)

何が問題なのかについてのアイデアはありますか?

4

1 に答える 1

0

サーバーからの応答は、JSON ではなく文字列の形式でした。

于 2015-11-24T09:21:46.817 に答える