null这里是啥
var json = JSON.stringify(box, null, 4);
这里写它的意图是什么
------解决方案--------------------原型 JSON.stringify(value [, replacer] [, space])
其中 space 表示缩进
SON.stringify(box, null, 4);
由于需要缩进4个空格,而又无参数 replacer 需要传递,所以就传了个空值
详细介绍可见:http://www.jb51.net/article/29893.htm