gpt4 book ai didi

javascript - 大 json 字符串下载失败-Angular JS

转载 作者:行者123 更新时间:2023-11-30 17:34:04 25 4
gpt4 key购买 nike

我用 Angular 编写了一个用于文件下载的应用程序,该应用程序仅适用于小型 json 字符串,但对于大型字符串下载失败。谁能告诉我一些解决方案。

我正在使用 REST 网络服务

 var json = _.getJson(); // here json value object be received from a script function 
var myURL = 'rest/myMethod?jsonValue=' + JSON.stringify(json);
_.downloadFile(myURL);

下载文件方法:

downloadFile: function(URL)
{
$.fileDownload(URL).done(function(e, response)
{
console.log('download success');
}).fail(function(e, response)
{
console.log('fail');
});
}

最佳答案

根据评论,这里是如何使用 Angular 进行 POST。我这里只能举个例子。 header 可能取决于 Angular 版本等。

function TestController($scope, $http) {
$http({
url: 'yourwebsite',
method: "POST",
data: json, //this is your json data string
headers: {
'Content-type': 'application/json'
}
}).success(function (data, status, headers, config) {
//upload succesfull. maybe update scope with a message?
}).error(function (data, status, headers, config) {
//upload failed
});

}

关于javascript - 大 json 字符串下载失败-Angular JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22396533/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com