jquery - Save array javascript - Stack Overflow

I have a long array like this:var array = [{x: 0, y:0} ...];Who contains almost 2000 objects.How can I

I have a long array like this:

var array = [{x: 0, y:0} ...];

Who contains almost 2000 objects. How can I export this to text and use it in another javascript file/project?

I have a long array like this:

var array = [{x: 0, y:0} ...];

Who contains almost 2000 objects. How can I export this to text and use it in another javascript file/project?

Share asked Apr 9, 2015 at 9:21 HieroHiero 2,2057 gold badges30 silver badges48 bronze badges 2
  • Write it to a file on the server with PHP? – Jeremy Thille Commented Apr 9, 2015 at 9:23
  • Convert it to JSON,stackoverflow./questions/2295496/convert-array-to-json – Low Flying Pelican Commented Apr 9, 2015 at 9:24
Add a ment  | 

3 Answers 3

Reset to default 8

Try like this

var array = [{
    x: 0,
    y: 0
}];
var a = document.body.appendChild(
    document.createElement("a")
);
a.download = "export.txt";
a.href = "data:text/plain;base64," + btoa(JSON.stringify(array));
a.innerHTML = "download example text";

Use JSON.stringify(array). This will return you with a string that you can save somewhere, say, on the server, and then re-use it as javascript array again.

To send the string to a server, you can use jQuery's $.ajax function. To retrieve it back, you can again use the $.ajax function, but it might be a good idea to also specify that the result from server is of type json. To do that, specify dataType to be json in the function.

Stringify it and copy it to another JavaScript project

JSON.stringify(array);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743677857a4488873.html

相关推荐

  • jquery - Save array javascript - Stack Overflow

    I have a long array like this:var array = [{x: 0, y:0} ...];Who contains almost 2000 objects.How can I

    22小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信