gpt4 book ai didi

xml - 无法读取请求 xml 正文元素值

转载 作者:数据小太阳 更新时间:2023-10-29 03:29:04 29 4
gpt4 key购买 nike

我似乎无法在我的应用程序中准备好来自 XML 请求的正文元素。

我尝试了下面 Go-restulf 包中的 BodyParameter,但它似乎不起作用,它只返回 nil。

// BodyParameter parses the body of the request (once for typically a POST or a PUT) and returns the value of the given name or an error.
func (r *Request) BodyParameter(name string) (string, error) {
err := r.Request.ParseForm()
if err != nil {
return "", err
}
return r.Request.PostFormValue(name), nil
}

以下是我目前在我的文件中的内容:

type Account struct {
title, firstName, lastName, email, dob, countryCode, addrLevel, addUnitType, addrUnitNo, addrAllotment, addrBuildingNo, addrStreetName, addrStreetType, addrStreet1, addrStreet2, addrCity, countryState, addrPostcode, telephone, mobile string
userName, password string
currency float32
challenge1 string
response1 string
AdminUser, AdminPass, Version string
}

func (api *ApiResource) create(request *restful.Request, response *restful.Response) {
account := &Account{AdminUser: user, AdminPass: pass, Version: version}
err := request.ReadEntity(account)
if err != nil {
response.WriteErrorString(http.StatusInternalServerError, err.Error())
return
}

fmt.Println(request.BodyParameter("UserName"))
}

这是否没有按预期工作?

最佳答案

AdminUser、AdminPass、Version 外,您的所有结构变量均未导出。

来自 http://golang.org/ref/spec#Exported_identifiers :

An identifier may be exported to permit access to it from another package. An identifier is exported if both:

  1. the first character of the identifier's name is a Unicode upper case letter (Unicode class "Lu"); and
  2. the identifier is declared in the package block or it is a field name or method name.

All other identifiers are not exported.

关于xml - 无法读取请求 xml 正文元素值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25979486/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com