我在运行ng serve和ng build时没有得到这个错误,只有在运行ng build --prod
时才得到这个错误。该如何解决,让我知道。
在“ ToastContainer”模板编译过程中发生错误,装饰器中不支持错误,但调用了“触发器”
答案 0 :(得分:1)
如果您在Angular 8上使用ng2-toastr,请尝试使用ngx-toastr
答案 1 :(得分:0)
将此添加到索引页面
$factory = (new Factory)->withServiceAccount('path to firebase keys json file');
$messaging = $factory->createMessaging();
$deviceToken = $user->deviceToken;
$message = CloudMessage::withTarget('token', $deviceToken)
->withNotification(Messaging\Notification::create('title', 'body'))
->withData(['custom-data-key1' => 'custom-data-value1', 'custom-data-key2' => 'custom-data-value2', 'click_action'=>'FLUTTER_NOTIFICATION_CLICK']);
$messaging->send($message);
它将在Angular 9上为我解决问题