生成 api文件
进入需要生成api的路径
luwei@luweideMacBook-Pro-2 api % pwd
/Users/myself/Golang/common_project/src/shorturl/api
luwei@luweideMacBook-Pro-2 api %
- 开始生成
luwei@luweideMacBook-Pro-2 api % goctl api -o shorturl.api Done. luwei@luweideMacBook-Pro-2 api % pwd /Users/myself/Golang/common_project/src/shorturl/api luwei@luweideMacBook-Pro-2 api % ls shorturl.api luwei@luweideMacBook-Pro-2 api %
默认内容
syntax = "v1"
info(
title: // TODO: add title
desc: // TODO: add description
author: "donglei"
email: "2781897595@qq.com"
)
type request {
// TODO: add members here and delete this comment
}
type response {
// TODO: add members here and delete this comment
}
service shorturl-api {
@handler GetUser // TODO: set handler name and delete this comment
get /users/id/:userId(request) returns(response)
@handler CreateUser // TODO: set handler name and delete this comment
post /users/create(request)
}
报错 field para1 is not set
这样会报错
提示 field para1 is not set
type Request1 {
// Para1 string `json:"para1,optional"`
Para1 string `json:"para1"`
}
这样不会
type Request1 {
Para1 string `json:"para1,optional"`
//Para1 string `json:"para1"`
}
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: