Angular 项目冻结,无法点击,刷新后会更好,
控制台或其他任何地方都没有出现错误。
有人对这个问题有什么想法或建议吗?
域中有与功能相关的文件夹,每个文件夹都有一个模块和路由模块。我正在项目中附加解析结构。
提前感谢您的回答和建议。
import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
import { Observable } from 'rxjs';
import { AbstractResolve } from '../../../../shared/resolvers/abstract-resolve';
import { AppStore } from '../../../../shared/utils/app.store';
import { ***** } from './*****.service';
@Injectable()
export class *****Resolve extends AbstractResolve {
constructor(private service: *****,
router: Router,
appStore: AppStore) {
super(appStore, router);
}
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<*****> {
return this.resolveAction(this.service.get(route.paramMap.get('id')));
}
}
hierarchy
src
└── app
├──
├── app.component.css
├── app.component.html
├── app.component.ts
├── app.module.ts
├── app-routing.module.ts
└── core.module.ts
project use :oauth2 spingboot 3.3.2 and angular 17.3.8 tool
提前感谢您的回答和建议。
我怀疑这与浏览器有关。您尝试过更换浏览器吗?我有时在特定版本的 Firefox 中也会遇到同样的问题。