728x90
반응형
backend 로 Appwrite self hosted 로 이용하여 flutter 공부를 하고 있다.
API를 던졌는데.. limit 에 걸려서? 자료가 다 날라오지 않았다.
찾아보니 default value 는 25개 라 한다. 에휴.. 그래서 전부 변경해줘야했다.
Map<String, String> queryParams = {'queries[]': 'limit(100)'};
var url = "~~~${AppConstants.dbId}/collections/${AppConstants.colloctionId12}/documents";
var response = await http.get(
Uri.parse(url).replace(
queryParameters: queryParams,
),
headers: {
'Content-Type': "application/json",
'X-Appwrite-Project': '~~~',
},
);
~~ 중간에 개인적인 값은 지웠다.
현재 100개의 내용을 가져오라는 코드로 작성되어있다.
실제 서버에 50개 이상의 자료를 넣어두지 않았기 때문에 가능할 것같다.
끝.
300x250
반응형
'Flutter' 카테고리의 다른 글
Flutter web 에 카카오 애드핏 광고를 넣어보자! (7) | 2024.03.10 |
---|---|
[후기] 배포 후기 (0) | 2024.02.13 |
Flutter(dart) https SSL 인증서 오류 (proxy, self-signed 인증서) (0) | 2024.02.03 |
Check if the email is valid or not in Flutter (2) | 2023.12.30 |
flutter 공부 : shrinkWrap 속성 (2) | 2023.12.23 |