Amplify Flutter의 API입니다.Post/put(REST)에서 일본어 난자
공식 견본에 따르면 일본어는 난장판이 되기 때문에 이에 해당하는 내용을 미리 기록한다.
Uint8List.fromList
로 문자열로 바꾸면 일본어가 엉망이 된다.try {
RestOptions options = RestOptions(
path: '/todo',
body: Uint8List.fromList('{\'name\':\'ほげ\'}'.codeUnits) // <------- 変更箇所 Uint8List.fromList で文字列変換すると、日本語が文字化けします。
);
RestOperation restOperation = Amplify.API.put(
restOptions: options
);
RestResponse response = await restOperation.response;
print('PUT call succeeded');
print(new String.fromCharCodes(response.data));
} on ApiException catch (e) {
print('PUT call failed: $e');
}
Utf8Encoder().convert
Uint8List
로 전환해 주세요.import 'dart:convert';
...(中略)...
try {
final encoder = const Utf8Encoder(); // <------- 追加
RestOptions options = RestOptions(
path: '/todo',
body: encoder.convert(('{\'name\':\'ほげ\'}') // <------- 変更箇所 Utf8Encoder().convert でbyte配列に変更しましょう。
);
RestOperation restOperation = Amplify.API.put(
restOptions: options
);
RestResponse response = await restOperation.response;
print('PUT call succeeded');
print(new String.fromCharCodes(response.data));
} on ApiException catch (e) {
print('PUT call failed: $e');
}
참고 자료
Reference
이 문제에 관하여(Amplify Flutter의 API입니다.Post/put(REST)에서 일본어 난자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/thirosue/articles/87839ac88dfbc2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)