1

我有一些 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 库绘制一些图表)

提前致谢

4

1 回答 1

-1
mydata= JSON.parse('{"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}');
myoptions= JSON.parse('{"series":{"points":{"show":true},"lines":{"show":true}},"grid":{"hoverable":true,"clickable":true}}');  
draw_quadratic( mydata,myoptions,4,8);

不要忘记''或者""在向 jsonparse 发送参数时它需要一个字符串

在 php 中,您可以使用:

  • .json_decode — 解码 JSON 字符串
  • .json_encode — 返回值的 JSON 表示

我编写的代码可以在 Chrome 中使用。

于 2010-05-14T05:37:44.707 回答