gpt4 book ai didi

c# - 为车身参数生成描述字段

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:46 25 4
gpt4 key购买 nike

所以我一直在谷歌上搜索很多来尝试解决这个问题,但我似乎找不到任何关于它的东西。请参阅图片以供引用,但我正在尝试填写主体参数的描述字段。执行此操作的最佳方法是什么?

missing body parameter description

最佳答案

您可以添加描述属性:

[Description("Get the data from our service. It will requires a key.")]
public ActionResult GetData(string key)
{
//Do something here...
return Json(new{Success=true, Data = data});
}

或者对于参数

public ActionResult GetData([Description("A valid key should be formated as xxx-xxx-xx")]string key)
{
//Do something here...
return Json(new{Success=true, Data = data});
}

发件人:http://millionbonus.bitbucket.org/mvc.apiexplorer/

关于c# - 为车身参数生成描述字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32339077/

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