ฉันได้สร้าง API ใน Go แล้วเมื่อถูกเรียกให้ทำการคิวรีสร้างอินสแตนซ์ของ struct จากนั้นเข้ารหัส encode นั้นเป็น JSON ก่อนที่จะส่งกลับไปยังผู้โทร ตอนนี้ฉันต้องการอนุญาตให้ผู้เรียกสามารถเลือกเขตข้อมูลเฉพาะที่พวกเขาต้องการส่งคืนโดยส่งผ่านพารามิเตอร์ "เขตข้อมูล" GET
ซึ่งหมายความว่าขึ้นอยู่กับค่าของฟิลด์ struct ของฉันจะเปลี่ยนไป มีวิธีการลบเขตข้อมูลจาก struct หรือไม่? หรืออย่างน้อยก็ซ่อนไว้ในการตอบสนอง JSON แบบไดนามิก? (หมายเหตุ: บางครั้งฉันมีค่าว่างดังนั้นแท็ก JSON omitEmpty จะไม่ทำงานที่นี่) หากไม่มีสิ่งเหล่านี้เป็นไปได้มีข้อเสนอแนะเกี่ยวกับวิธีที่ดีกว่าในการจัดการกับสิ่งนี้หรือไม่ ขอบคุณล่วงหน้า.
structs รุ่นที่เล็กกว่าที่ฉันใช้อยู่ด้านล่าง:
type SearchResult struct {
Date string `json:"date"`
IdCompany int `json:"idCompany"`
Company string `json:"company"`
IdIndustry interface{} `json:"idIndustry"`
Industry string `json:"industry"`
IdContinent interface{} `json:"idContinent"`
Continent string `json:"continent"`
IdCountry interface{} `json:"idCountry"`
Country string `json:"country"`
IdState interface{} `json:"idState"`
State string `json:"state"`
IdCity interface{} `json:"idCity"`
City string `json:"city"`
} //SearchResult
type SearchResults struct {
NumberResults int `json:"numberResults"`
Results []SearchResult `json:"results"`
} //type SearchResults
ฉันเข้ารหัสและแสดงผลการตอบสนองเช่นนั้น:
err := json.NewEncoder(c.ResponseWriter).Encode(&msg)