0
我已經看過所有關於這個問題的SO上的答案,沒有任何工作。用Browserify/Shim CDN jlick旋轉木馬jQuery
所以我的項目上有jQuery,通過Google CDN加載。 我使用babelify,browserify和browserify,墊片,試圖得到光滑轉盤的工作,但我不斷收到錯誤:Uncaught TypeError: n.element.slick is not a function
我的package.json文件看起來像這樣:
"browserify-shim": {
"jquery": "global:jQuery",
"slick-carousel": {
"depends": [
"jquery: jQuery"
],
"exports": "$.fn.slick"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}
和我js文件看起來是這樣的:
import { $, jQuery } from 'jquery'
import slick from 'slick-carousel'
class Carousel {
constructor(props) {
this.element = props.element
this.type = this.element.data('carousel-type') || 'default'
this.settings = {
arrows: true,
dots: true,
slidesToShow: this.element.data('slides') || 1,
infinite: false,
responsive: [
{
breakpoint: 768,
settings: {
slidesToShow: 2
}
},
{
breakpoint: 568,
settings: {
slidesToShow: 1
}
}
]
}
if (this.type === 'mobile') {
this.settings.arrows = false
this.settings.dots = false
}
this.initializeCarousel()
}
initializeCarousel =() => {
this.element.slick(this.settings)
}
}
export default Carousel
有沒有人有任何想法我做錯了什麼?我真的想爲我的依賴使用npm,但我不能在一分鐘,因爲我可以讓這個工作。