Dart를 배우고 있지만 타임 스탬프를 생성하는 방법을 모릅니다. 나는 이것을 시도했다 :
void main() {
print((new Date()).millisecondsSinceEpoch);
}
IDE 덕분에 여기까지 도달 할 수 있었지만 혼란스러운 오류가 발생합니다.
Exception: No such method: 'Date'
도움?
답변:
거의 맞았습니다. 명명 된 생성자를 사용하지 않았습니다 .
void main() {
print(DateTime.now().millisecondsSinceEpoch);
}
제공 :
1351441456747
자세한 내용은 API 문서를 참조하십시오 : https://api.dart.dev/stable/2.10.1/dart-core/DateTime-class.html
void main() { print(DateTime.now().millisecondsSinceEpoch); }