在Angular 9中(使用Bootstrap 4和Jquery 3.5.1)。单击bootstrap 折叠按钮时,在浏览器控制台上出现错误,而不是下拉菜单。
我真的不知道错误的确切来源。
Can't convert object to primitive value(zone-evergreen:171).
Uncaught Type Error: Cannot convert object to primitive value(zone-evergreen.js:171 )
at RegExp.test (<anonymous>)
at HTMLDivElement.<anonymous> (bootstrap.bundle.min.js:6)
at Function.each (jquery.min.js:2)
at S.fn.init.each (jquery.min.js:2)
at S.fn.init.a._jQueryInterface [as collapse] (bootstrap.bundle.min.js:6)
at HTMLDivElement.<anonymous> (bootstrap.bundle.min.js:6)
at Function.each (jquery.min.js:2)
at S.fn.init.each (jquery.min.js:2)
at HTMLButtonElement.<anonymous> (bootstrap.bundle.min.js:6)
at HTMLDocument.dispatch (jquery.min.js:2)
3
这是由jQuery 3.5.0引起的,将您的jquery版本降级为3.4.1以进行临时修复
—
Sylvernus Akubo