本帖最后由 cqwcns 于 2020-1-6 12:27 编辑
我的DEMO是这样的:
[JavaScript] 纯文本查看 复制代码 <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script src="assets/js/core/jquery.3.2.1.min.js"></script>
</head>
<body>
<script type="application/javascript">
function funGetChartDefaultStyle() {
return {
type: 'pie',
toolbox: {
show: false,
feature: {
dataView: {
show: true,
readOnly: true
},
saveAsImage: {
show: true
}
}
},
legend: {},
series: [{
name: '标题',
type: 'pie',
radius: ['0%', '70%'],
avoidLabelOverlap: false,
label: {},
labelLine: {}
}],
dataset: {
source: ''
}
};
};
let arrTemp=funGetChartDefaultStyle();
arrTemp.series.radius=['20%', '90%'];
console.log(arrTemp);
$.post('/php/changeChartPage.php', {
vVal: JSON.stringify(arrTemp),
});
</script>
</body>
</html>
先生产一个对象,修改他,在控制台上输出,可见修改成功:
【此处剪刀手】
然后我POST数据,诡异的事情就发生了:
【此处黑人问号脸】
为什么会这样?!?!?请指教。
|