我正在使用Swashbuckle 5.1.5作为上传图片的其余API,但表单数据参数数据类型即将出现未定义。你如何设置数据类型?
bool validate_content(const std::string & str, const std::regex & pattern, std::vector<std::string> & errors)
{
if ( false == std::regex_match(str, pattern) )
{
std::stringstream error_str;
// error_str << "Pattern match failure: " << pattern << ", content: " << str;
errors.push_back(error_str.str());
return false;
}
return true;
}
答案 0 :(得分:0)
这应该可以正常工作。我正在使用最新的swashbuckle版本。你能试试最新版本吗?