What does this error mean? I have a bunch of them in a bundled version of my meteor app.
这个错误是什么意思?我在我的流星应用程序的捆绑版本中有一堆它们。
Exception from Deps afterFlush function: TypeError: Cannot read property '_spark_y3zPMfQWJhDD6vSoY' of null
1 个解决方案
#1
1
This error usually comes up when you move some Meteor rendered DOM elements using non-Meteor code (i.e. jQuery). Then, when Meteor goes to look for those DOM elements after a reactivity change, it can't find them and complains.
当您使用非Meteor代码(即jQuery)移动一些Meteor渲染的DOM元素时,通常会出现此错误。然后,当Meteor在反应性改变后去寻找那些DOM元素时,它找不到它们并抱怨。
#1
1
This error usually comes up when you move some Meteor rendered DOM elements using non-Meteor code (i.e. jQuery). Then, when Meteor goes to look for those DOM elements after a reactivity change, it can't find them and complains.
当您使用非Meteor代码(即jQuery)移动一些Meteor渲染的DOM元素时,通常会出现此错误。然后,当Meteor在反应性改变后去寻找那些DOM元素时,它找不到它们并抱怨。