gpt4 book ai didi

rest - 如何从 goREST POST 端点返回消息?

转载 作者:IT王子 更新时间:2023-10-29 02:06:04 25 4
gpt4 key购买 nike

我正在使用类似于以下代码的端点

type TestService struct {
gorest.RestService `root:"/test/"`
testPost gorest.EndPoint `method:"POST" path:"/testPost/" postdata:"map[string]string"`
}

我获取并处理发布的数据,并希望向调用客户端返回一个有效负载,即成功/错误和一条消息。

我无法从文档中弄清楚如何实现这一点,附加 output 标记并根据 GET 端点从函数返回任何内容失败并出现以下错误;

Parameter list not matching. No matching Method found for EndPoint:[testPost],type:[POST] . Expecting: #func(serv DocumentService) TestPost(PostData map[string]string)# with no return parameters.

是否可以将负载返回给客户端?如果不能,我可以在成功/失败时重定向到不同的终点吗?

最佳答案

所以我找到了一种方法,以防万一有人遇到类似问题。

看来你可以直接使用 ResponseBuilder 的实例来编写,所以我创建了一个新的响应构建器,将内容类型设置为 json 并写出我的响应!

func(serv DocumentService) TestPost(PostData map[string]string){
fmt.Printf("%+v", PostData)
rb := serv.ResponseBuilder()
rb.AddHeader("Content-Type", "application/json")
rb.Write([]byte("{type:'info', msg:'Success!'}"))
}

碰巧要通过不同的方法提供输出,您可以使用类似的方法;

serv.ResponseBuilder().Created("http://localhost:8787/orders-service/items/"+string(i.Id))

我在 http://code.google.com/p/gorest/ 找到的

关于rest - 如何从 goREST POST 端点返回消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22943214/

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