要解决Angular 7中Bootstrap 4轮播指示器无法正常工作的问题,可以尝试以下几个步骤:
angular.json
文件中的styles
和scripts
数组中添加相关的文件路径。"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]
请注意,这里的示例图片路径需要根据实际情况进行更改。
ViewChild
和AfterViewInit
,并在类中添加以下代码:import { Component, ViewChild, AfterViewInit } from '@angular/core';
@Component({
selector: 'app-carousel',
templateUrl: './carousel.component.html',
styleUrls: ['./carousel.component.css']
})
export class CarouselComponent implements AfterViewInit {
@ViewChild('myCarousel') myCarousel: any;
constructor() { }
ngAfterViewInit() {
// 在视图初始化后,手动启用轮播指示器
this.myCarousel.carousel();
}
}
这里使用ViewChild
来获取轮播指示器的元素,并在ngAfterViewInit
生命周期钩子中使用carousel()
方法手动启用轮播指示器。
通过以上步骤,应该能够解决Angular 7中Bootstrap 4轮播指示器无法正常工作的问题。