Skip to content
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

this.fieldMap.get(key).$$optionMap 增加undefined检查 #76

Open
applerao opened this issue Mar 21, 2020 · 0 comments
Open

this.fieldMap.get(key).$$optionMap 增加undefined检查 #76

applerao opened this issue Mar 21, 2020 · 0 comments

Comments

@applerao
Copy link

报错信息:

Uncaught (in promise) TypeError: Cannot read property '$$optionMap' of undefined
at t.value (0.bundle.min.js:formatted:21485)
at 0.bundle.min.js:formatted:21473
at Array.forEach ()
at t.value (0.bundle.min.js:formatted:21472)
at t.value (0.bundle.min.js:formatted:21449)
at p.updateComponent (vendor.min.js:4)
at p.receiveComponent (vendor.min.js:4)
at Object.receiveComponent (vendor.min.js:1)
at Object.updateChildren (vendor.min.js:4)
at h._reconcilerUpdateChildren (vendor.min.js:5)

定位问题:

innerTable.js Line 154 if(this.fieldMap.get(key).$$optionMap) 需要增加undefined检查,如:
if (this.fieldMap.get(key) && this.fieldMap.get(key).$$optionMap)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant