Maximum call stack size exceeded show
-
Re: Maximum call stack size exceeded.
In case someone met the same error, here is the cause root:
qrc:/qml/NewConnectionHost.qml:15:: Line 15 has a statement that calls itself inside a function, that is, the recursive call of the function, but there is no condition for the end of the recursion in the function body, so it will loop indefinitely. -
Re: Maximum call stack size exceeded.
In case someone met the same error, here is the cause root:
qrc:/qml/NewConnectionHost.qml:15:: Line 15 has a statement that calls itself inside a function, that is, the recursive call of the function, but there is no condition for the end of the recursion in the function body, so it will loop indefinitely.@Haipeng-yu I've tried two examples of the qt demos, calqlatr and coffee machine. When I built them to webassembly, neither of them could run correctly and both of them met the problem "RangeError: Maximum call stack size exceeded". Is there anything wrong with qt official examples?