내가 하고 싶은 일:
이 URL에 여러 개의 가져오기 요청을 보내고 싶습니다.
https://catalog.wb.ru/brands/m/catalog?page=1&limit=300&brand=5786&dest=-1257786&sort=pricedown
그런 다음 "제품" 개체 내부의 모든 데이터를 수집합니다. 모든 페이지에 대한 데이터를 가져오기 위해 키 "페이지"의 값이 자동으로 증가됩니다.
사실 프론트엔드로 보내기 위해 json을 작성해야 하는지 잘 모르겠습니다. for 루프에서 새로운 응답을 받으면 다른 요청을 보내는 것이 더 나을까요?
내가 한 일:
올바른 구조로 제작되었습니다. 단일 요청으로 모든 것이 잘 작동합니다.
생성requestbodybytes []byte
和 productsbytes []byte
,以便将它们与 ioutil.readall
中的 []bytes
함께 첨부합니다.
requestbodybytes
의 길이를 인쇄하면 각 요청마다 확장되는 것을 볼 수 있지만 정렬 해제한 후에는 출력에 빈 구조가 표시됩니다.
이런 일이 발생한다는 것을 알고 있습니다. 왜냐하면 type response
的新 json。但是,如果我需要由 type response
的多个 json 中的“产品”对象组成的 product structs
조각 요청을 받을 때마다 어떻게 해야 합니까?
참고: 요청 전송을 중지하려면 for 루프 내에서 초기화 requestbodybytes
해야 합니다. 페이지에 정보가 없으면 서버가 200 코드와 빈 json을 제공하기 때문입니다.
미리 감사드립니다!
const URL = "https://catalog.wb.ru/brands/m/catalog?page=%d&limit=300&brand=5786&dest=-1257786&sort=pricedown" type Response struct { Data struct { Products []Product `json:"products"` } `json:"data"` } type Product struct { ID int `json:"id"` Name string `json:"name"` Price int `json:"priceU"` Rating float32 `json:"reviewRating"` Sale int `json:"sale"` New bool `json:"isNew"` } func main() { var response Response var products Response //Also tried to make it []Response var ProductsBytes []byte for i := 1; ; i++ { resp, err := http.Get(fmt.Sprintf(URL, i)) if err != nil { fmt.Printf("#1 Error: %s", err) } defer resp.Body.Close() bytes, err := ioutil.ReadAll(resp.Body) var requestBodyBytes []byte requestBodyBytes = append(requestBodyBytes, bytes...) ProductsBytes = append(ProductsBytes, bytes...) json.Unmarshal(requestBodyBytes, &response) fmt.Println(resp.Status) fmt.Printf("\nSlice from page #%d\nLength of bytes: %d\n", i, len(bytes)) fmt.Printf("Length of finalResult: %d\n", len(requestBodyBytes)) if len(response.Data.Products) == 0 { fmt.Println("There's no more data") break } } json.Unmarshal(ProductsBytes, &products) fmt.Println(response) fmt.Println(products) fmt.Println(len(products)) }
모든 원시 응답 바이트를 수집할 이유가 없습니다. 각 응답을 개별적으로 역마샬링하고 각 페이지의 제품을 모든 제품이 포함된 일부 조각에 추가하면 됩니다. 또한 루프 내에서 defer resp.body.close()
를 호출하는 것은 아마도 원하는 것이 아닐 수도 있습니다. 지연된 문은 루프가 끝난 후에만 실행되므로 요청에 연결을 재사용할 수 없습니다. 루프 본문을 자체 함수로 추출하면 다음과 같이 더 명확해집니다.
위 내용은 동일한 구조를 가진 JSON이 여러 개 있습니다. 해당 개체는 개체 배열입니다. 이러한 배열을 배열에 어떻게 추가할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!