Dart Frog Dart
/pixel.gif 요청에 빈 GIF로 응답하는 Dart Frog용 Dart 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
Dart Frog Dart
// routes/pixel.gif.dart: the file name is the route.
import 'dart:convert';
import 'package:dart_frog/dart_frog.dart';
final _gif = base64Decode('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
Response onRequest(RequestContext context) {
return Response.bytes(
body: _gif,
headers: {'content-type': 'image/gif', 'cache-control': 'no-store'},
);
}
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
curl -sI http://localhost:8080/pixel.gif