ใน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