使用Plotly.js时JavaScript堆满了内存

时间:2019-08-13 13:44:42

标签: javascript reactjs plotly

我正在使用react-plotly.js。当我通过npm安装它并尝试导入以下内容时:SELECT......... ..... LEFT OUTER JOIN ..... LEFT OUTER JOIN -- ( -- SELECT DISTINCT A,B,C -- from ABC -- where (A,B,C ) not in -- ( -- select A,B,C from -- ( -- SELECT A,B,C,count(*) -- FROM ABC -- group by A,B,C -- having count(*) >1 -- ) -- ) -- ) -- -- commented above inner query and -- -- added following inner query -- (SELECT A,B,C FROM ABC group by A,B,C having count(*) = 1) -- -- temp1 ON condition1 LEFT OUTER JOIN -- ( -- SELECT DISTINCT X,Y,Z from XYZ -- where (X,Y,Z ) not in -- ( -- select X,Y,Z from -- ( -- SELECT X,Y,Z ,count(*) -- FROM XYZ -- group by X,Y,Z -- having count(*) >1 -- ) -- ) -- ) -- -- commented above inner query and -- -- added following inner query -- (SELECT X,Y,Z FROM XYZ group by X,Y,Z having count(*) = 1 ) -- -- temp2 ON condition2 .... ... LEFT OUTER JOIN ....... Where 我遇到了此错误,这完全阻止了我的应用程序运行。

enter image description here

有什么办法解决吗?

0 个答案:

没有答案