我正在尝试从javascript if (new Oval(x1, y1, w1, h1).intersects(new Rectangle(x2, y2, w2, h2))) {
//code here for when collision occurs.
}
调用php文件data.php
中的数组,但出现错误:
script.js
,数组看起来像这样正确:
Every row given must be either null or an array.
['2019-05-13 00:25:13',27.20,41.00],['2019-05-13 00:26:00',27.20,41.00],['2019-05-13 01:26:03',28.10,39.00],['2019-05-13 02:56:11',28.40,37.00],['2019-05-13 03:26:15',28.40,37.00],
答案 0 :(得分:0)
您不想console.log()
内的数据data.addrows()
内。 console.log()
用于将数据记录到控制台,而不是用于填充阵列。
请这样做:
data.addRows([sensors]);
希望这会有所帮助