angular2 service如何使用component组件数据

发布于 2022-09-11 20:17:48 字数 1824 浏览 17 评论 0

1.我想要写一个公用的提示框,用的angula2官方的mobile框架,使用modal提示需要在service里引用其他组件里的数据
2.项目目录如下图:
clipboard.png

3.warning.component.html:
<ng-template #tpl>
<p style="text-align: center;font-size:12px;">未认证的用户</p>
<p style="text-align: center;font-size:12px;">请联系客服处理</p>
</ng-template>
warning.component.ts:
import { Component, OnInit, ViewChild, TemplateRef } from '@angular/core';
@Component({
selector: 'app-warning',
templateUrl: './warning.component.html',
styleUrls: ['./warning.component.less']
})
export class WarningComponent implements OnInit {
@ViewChild('tpl')
tplRef: TemplateRef<any>;
constructor() { }
ngOnInit() {}
}
引入到了public.module.ts里:
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { WarningComponent } from './warning/warning.component';
@NgModule({
imports: [

CommonModule

],
declarations: [WarningComponent],
exports: [WarningComponent]
})
export class PublicModule {}
component.service.ts:
import { Component, OnInit, Injectable} from '@angular/core';
import { Toast, Modal } from 'ng-zorro-antd-mobile';
import { WarningComponent } from 'src/app/shared/public/warning/warning.component';

@Injectable({
providedIn: 'root'
})
export class CommonService {
constructor(private warn: WarningComponent) { }
tplRef = this.warn.tplRef;
// 显示警告语
warnInfo() {

Modal.alert('错误', this.tplRef, [
  { text: '取消' },
  { text: '确定' }
]);

}
}
谢谢各位解答。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

睫毛溺水了 2022-09-18 20:17:48

不能把component注入到service里面,正确的做法是warnInfo加一个TemplateRef参数,template由componet负责维护,其实warnInfo也是某个component调用的,让这个component把template传给warnInfo。

盛夏尉蓝 2022-09-18 20:17:48

clipboard.png

clipboard.png

clipboard.png

点击上面的调用test方法,可以执行modal但是加载不到template,用组件写成的按钮就可以,但是我想要直接用js调用的方式

已经解决 解决方法如下:
clipboard.png
html以组件方式引入,
ts中调用子组件方法:
clipboard.png

这里使用了viewChild调用子组件方法,
clipboard.png

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文