我一直在尝试导入我的api定义文件,这是一个yaml文件,但是当我从控制台导入它时,我收到了几个错误
Invalid model name specified: application/json=null
Model name must be alphanumeric: inline_response_200_1
Invalid model name specified: null
Reference to model 'inline_response_200_1' not found. Ignoring.
我怎样才能摆脱这些?
答案 0 :(得分:1)
我想我也在GitHub上看过你的帖子,但这些是导入中的验证错误。定义的任何模型都必须具有字母数字的有效名称[a-zA-Z0-9] +
看起来你可能有一些糟糕的YAML语法,因为模型名称应该是非空的。
如果由于错误而未成功创建模型,则Method中的任何引用也将被破坏。