我有这个功能。
func OrderedParamsFromUri(uri string) []string {
matches := pathParamRE.FindAllStringSubmatch(uri, -1)
result := make([]string, len(matches))
for i, m := range matches {
result[i] = m[1]
}
return result
}
我想在我的模板中使用这个函数来检查返回的是否result包含项目。我知道我可以做这样的事情:
( .OperationId | OrderedParamsFromUri | //here i want to check for the empty slice)
.OperationId => this is the argument.
我知道我可以检查返回的切片是否为空if not .returnedSlice 但是如何将这两者结合起来?
凤凰求蛊
相关分类