Go의 HTTP 패키지를 사용하여 POST 요청에서 쿼리 문자열에 액세스
Go의 HTTP 패키지로 POST 요청을 처리할 때 쿼리 문자열에 액세스하고 구문 분석할 수 있습니다. 중대한. HTTP 패키지는 쿼리 문자열을 추출하는 편리한 방법을 제공합니다: Query().
POST 요청에서 쿼리 문자열은 일반적으로 정보의 키-값 쌍을 포함하는 URL에 첨부됩니다. . Query() 메소드는 이러한 키-값 쌍을 검색하여 값 맵으로 구문 분석합니다.
POST 요청에서 쿼리 문자열에 액세스하려면 다음 단계를 따르세요.
예:
func newHandler(w http.ResponseWriter, r *http.Request) { fmt.Println("GET params were:", r.URL.Query()) // if only one expected param1 := r.URL.Query().Get("param1") if param1 != "" { // ... process it, will be the first (only) if multiple were given // note: if they pass in like ?param1=&param2= param1 will also be "" :| } // if multiples possible, or to process empty values like param1 in // ?param1=&param2=something param1s := r.URL.Query()["param1"] if len(param1s) > 0 { // ... process them ... or you could just iterate over them without a check // this way you can also tell if they passed in the parameter as the empty string // it will be an element of the array that is the empty string } }
위 내용은 Go의 HTTP POST 요청에서 쿼리 문자열에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!