gpt4 book ai didi

angular - 错误 TS1005 : ':' expected TypeScript Angular6

转载 作者:太空狗 更新时间:2023-10-29 18:05:36 25 4
gpt4 key购买 nike

我在尝试构建我的 Angular 6 应用程序时遇到错误。

ERROR in src/app/util/notification.service.ts(14,9): error TS1005: ':' expected.

相关代码如下

import { Injectable } from '@angular/core';
import { ToastrService } from 'ngx-toastr';

@Injectable()
export class NotificationService {

timeOut: number = 5000;

constructor(private toastr: ToastrService) {}

error(toast_msg, msg_title){

this.toastr.error('<span class="now-ui-icons ui-1_bell-53"></span> ' + toast_msg, msg_title, {
this.timeOut
});
}

}

可能是什么问题?

最佳答案

你可能想要这样的东西:

this.toastr.error('<span class="now-ui-icons ui-1_bell-53"></span> ' + toast_msg, msg_title, {
timeout: this.timeOut,
});

或者,由于其余参数作为 args 传递:

this.toastr.error('<span class="now-ui-icons ui-1_bell-53"></span> ' + toast_msg, msg_title, this.timeOut);

关于angular - 错误 TS1005 : ':' expected TypeScript Angular6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51929373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com