我查看了几个相关的帖子和文档,但似乎仍然无法从@ViewChild 获得预期的行为。
最终,我试图设置一个 div 的滚动位置。此元素不是组件,而是我的 HTML 中的普通 div。
为此,我尝试使用@ViewChild 来获取我需要的DOM 元素,并设置它的滚动值。(顺便说一句,如果您知道没有@ViewChild(或jQuery)的更好方法来完成此任务,我们将非常感谢您的回答!)
目前,@ViewChild 只返回 undefined。进行一些虚拟检查: - 我正在 AfterViewInit 中访问我的元素 - 我在此元素上没有任何其他指令,如 *ngIf 或 *ngFor。
这是控制器:
import { Component, AfterViewInit, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'portfolio-page',
templateUrl: './portfolio-page.component.html',
styleUrls: ['./portfolio-page.component.scss']
})
export class PortfolioPageComponent implements AfterViewInit{
@ViewChild('gallery-container') galleryContainer: ElementRef;
ngAfterViewInit(){
console.log('My element: ' + this.galleryContainer);
}
}
和模板:
<div id='gallery-container' class='gallery-image-container'>
<div class='gallery-padding'></div>
<img class='gallery-image' src='{{ coverPhotoVm }}' />
<img class='gallery-image' src='{{ imagepath }}' *ngFor='let imagepath of imagesVm' />
</div>
我的输出很简单:我的元素:未定义。
如您所见,我目前正在尝试通过 ID 访问元素,但也尝试过类名。任何人都可以提供更多关于 ViewChild 选择器查询的详细信息吗?
我还看到了将哈希“#”用作@ViewChild 使用的选择器标识符的示例——但这会导致我使用#gallery-container 时出现模板解析错误。
我想不出这里还有什么可能是错误的。感谢所有帮助,谢谢!
此处提供完整代码:https ://github.com/aconfee/KimbyArting/tree/master/client/KimbyArting/components/portfolio-page