-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JS: RangeError: Maximum call stack size exceeded #726
Comments
From first glance, it looks like it is trying to encode an object tree that references itself. E.g. object A may be a list with a few objects, including object B, and Object B contains object A again. I'm not really sure what the problem is unless I have the code to reproduce it. Would it be possible to create a small, minimal example that shows the error? |
`from flexx import flx, ui class Exampleui1(flx.Widget):
class Example2itemui(flx.Widget):
class Exampleui2(flx.Widget):
class Example2(flx.PyWidget):
class Exampleui(flx.Widget):
class Example(flx.PyWidget):
class Datasupply:
class Pager:
if name == 'main': |
Hello @almarklein If you have time, please help Thanks |
hao li ***@***.***> writes:
If you have time, please help
I tried copy pasting your example, but has several indenting issues. I
did not take the time to fix it.
IMHO, if you want to be helped quickly, attach the working example as a
file, not as plain text.
…--
Konubinix
GPG Key : 7439106A
Fingerprint: 5993 BE7A DA65 E2D9 06CE 5C36 75D2 3CED 7439 106A
|
demo.zip |
I think the problem point
When the above two are used together, this problem is prone to occur. This is what I observed. |
Hello, Found a problem? @Konubinix @almarklein |
It goes way beyond my knowledge. Although, I found a way to reduce the file to ease reproducing it. I found out that putting the same code as Example2ui in Exampleui did not make the issue appear. I used a tab layout to ease seeing no issue with the code inlined and the issue with the code of your example. Also, now, you only need to click on the button to see the issue. I hope I did manage to keep showing the same issue as you had @chinaericgithub , but with a much smaller codebase and in a more repeatable way. Also, @chinaericgithub , I suggest you read the guides of flexx, in particular https://flexx.readthedocs.io/en/stable/guide/patterns.html#use-of-a-central-data-store . I have the intuition that following those advices would not have put you in this situation in the first place. But this is only a wild guess. |
Hi, The problem is solved: I looked again at the documentation https://flexx.readthedocs.io/en/stable/guide/widgets_components.html and saw: I think TabLayout may have some problems with proxy conversion. |
Hello,
The problem "JS: RangeError: Maximum call stack size exceeded" is often encountered in the project, which causes the project to click without continuing to respond.
Since I am not in-depth on the underlying code research, help analyze the reasons and solutions.
Thank you.
The text was updated successfully, but these errors were encountered: