我有一些 JSON 格式的数据(来自 php)要传递给 javascript 函数。尝试执行此操作时出现“无效的属性 ID”错误。
Error: invalid property id
Source File: http://localhost/MathVoyager/index.php/test
Line: 1, Column: 15
Source Code:
draw_quadratic({
下面是js函数签名(数据和选项都是JSON格式)
函数draw_quadratic(数据,选项,阿尔法,贝塔)
下面是一个示例函数调用。
draw_quadratic({"label":"(((1)*x^((1))+(4))*((1)*x^((1))+(6))) = (0)","data":[[-8,8],[-7.5,5.25],[-7,3],[-6.5,1.25],[-6,0],[-5.5,-0.75],[-5,-1],[-4.5,-0.75],[-4,0],[-3.5,1.25],[-3,3],[-2.5,5.25],[-2,8]],"xaxis":1,"yaxis":1}, {"series":{"points":{"show":true},"lines":{"show":true}},"grid":{"hoverable":true,"clickable":true}}, 4, 8);
(我正在尝试使用 flot js 库绘制一些图表)
提前致谢