typescript 型エラーを解決したい
Angularの開発を行っています。
typescriptの型エラーに毎日悩まされています。
初歩的な質問で申し訳ございませんが、
ご回答いただけますと幸いです。
以下のエラーメッセージが出ています。
「型 'number' を型 'Date' に割り当てることはできません。」
typescript
1import { Component, OnInit } from '@angular/core'; 2 3@Component({ 4 selector: 'app-hello', 5 templateUrl: './hello.component.html', 6 styleUrls: ['./hello.component.css'] 7}) 8 9export class HelloComponent implements OnInit { 10 title: string = ""; 11 message: string = ""; 12 price: number = 1; 13 now: Date = 2023/6/19/22/33/00; 14 15 constructor() { } 16 17 ngOnInit() { 18 this.title = 'Hello-app'; 19 this.message = 'This is My First Component!!'; 20 this.price = 123450; 21 } 22 23 // 今日の日付と時間を表示する 24 today() { 25 return new Date().toLocaleString(); 26 } 27}
回答1件
あなたの回答
tips
プレビュー