http.go 302 B

1234567891011121314151617
  1. package fetdata
  2. import (
  3. "golang-fave/utils"
  4. )
  5. func (this *FERData) RequestURI() string {
  6. return this.wrap.R.RequestURI
  7. }
  8. func (this *FERData) RequestURL() string {
  9. return this.wrap.R.URL.Path
  10. }
  11. func (this *FERData) RequestGET() string {
  12. return utils.ExtractGetParams(this.wrap.R.RequestURI)
  13. }