Go 模板 if 条件
短信预约 -IT技能 免费直播动态提醒
问题内容
如何将 and
和 eq/ne
函数组合在一起?
我写了这个片段
{{ define "opsgenie.default.tmpl" }}
{{.commonlabels.alertname }}
{{- range $i, $alert := .alerts }}
{{ .annotations.description }}
{{- end -}}
{{- "\n" -}}
{{- "\n" -}}
{{- if and eq .commonlabels.infoalert "true" eq .commonlabels.topic "database" -}}
grafana: https://{{ .commonlabels.url }}
{{- "\n" -}}{{- end -}}
{{- if and ne .commonlabels.infoalert "true" eq .commonlabels.topic "database" -}}
database:
• https://{{ .commonlabels.url }}/
• https://{{ .commonlabels.url }}/
{{- "\n" -}}{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}
目标是:
- 如果我的警报包含两个标签
infoalert: true
和topic:database
则仅显示 grafana 链接 - 如果我的警报仅包含标签
topic: database
但不包含infoalert: true
则仅显示 databsse 链接
它看起来像条件 {{- if and eq .commonlabels.infoalert "true" eq .commonlabels.topic "database" -}}
的语法不正确,因为我在警报时在alertmanager.log中收到此错误被解雇:
notify retry canceled due to unrecoverable error after 1 attempts: templating error: template: email.tmpl:24:17: executing \"opsgenie.default.tmpl\" at : wrong number of args for eq: want at least 1 got 0
正确答案
只需使用括号对表达式进行分组:
{{- if and (eq .commonlabels.infoalert "true") (eq .commonlabels.topic "database") -}}
{{- if and (ne .commonlabels.infoalert "true") (eq .commonlabels.topic "database") -}}
查看这个可测试的示例:
func main() {
t := template.must(template.new("").parse(class="lazy" data-src))
m := map[string]any{
"infoalert": "true",
"topic": "database",
}
if err := t.execute(os.stdout, m); err != nil {
panic(err)
}
fmt.println("second round")
m["infoalert"] = "false"
if err := t.execute(os.stdout, m); err != nil {
panic(err)
}
}
const class="lazy" data-src = `
{{- if and (eq .infoalert "true") (eq .topic "database") -}}
infoalert is true and topic is database
{{- end -}}
{{- if and (ne .infoalert "true") (eq .topic "database") -}}
infoalert is not true and topic is database
{{ end }}
`
这将输出(在 go playground 上尝试):
infoalert is true and topic is database
Second round
infoalert is NOT true and topic is database
以上就是Go 模板 if 条件的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
Go 模板 if 条件
下载Word文档到电脑,方便收藏和打印~
下载Word文档
猜你喜欢
Go 模板 if 条件
问题内容如何将 and 和 eq/ne 函数组合在一起?我写了这个片段{{ define "opsgenie.default.tmpl" }}{{.commonlabels.alertname }}{{- range $i, $ale
2024-02-06
条件结构if
教程:高能:语句结构都是由关键字开头,用冒号结束! 一:语句结构 if condition_1: statement_block_1elif condition_2: statement_block_2else:
2023-01-30
if 条件判断
条件语句的执行过程:if 条件判断注意:1.每个条件后面要使用冒号 : ,表示条件为True时要执行的代码;2.使用缩进来划分代码块,相同缩进数的语句在一起组成一个代码块。if...else,单条件判断 1 username_store =
2023-01-30
Python IF 条件判断
if 语句用于控制程序的执行,基本形式为:if 判断条件: 执行语句……else: 执行语句……其中"判断条件"成立时(非零),则执行后面的语句,而执行内容可以多行,以缩进来区分表示同一范围。else 为可选语句,当需要在条件不
2023-01-30
如何在go模板内部分配go模板的变量?
问题内容我刚刚开始使用 golang 和模板系统来重新开发我的网络服务器。现在我只想为每个网站编写常量变量,但我什至不知道我在搜索什么。希望有人能帮忙。我有这个 gohtml 文件作为每个 html 文件的“基础”{{define "t
2024-02-05
Python学习-if条件语句
Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。单分支条件语句if 判断条件: 条件成立,执行该代码块.... 注意:与其他编程语言,如Java和C语言不同的是,C语言的代码块是用缩
2023-01-30
cmd if条件的具体用法
本篇内容主要讲解“cmd if条件的具体用法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“cmd if条件的具体用法”吧!1、判断驱动器、文件或文件夹是否存在,用 if exist 语句;
2023-06-08
2024-04-02
2024-04-02
2023-09-24
2024-04-02
bash if条件判断的使用
目录if格式条件测试整数测试字符测试文件测试组合条件测试在bash中,if是可以对语句做选择执行,做if条件测试有整数测试,字符测试,文件测试三种形式。
if格式
单分支语法
if 条件; then语句1语句2...
fi双分支语法
if
2023-02-16
Python的流程控制 - if条件
流程控制主要分为判断和循环,这里我们先看if条件判断。if语句if expression:statements(s)这里要注意的是,Python使用缩进作为语句分组的方法,所以我们建议使用4个空格作为缩进,在同一个缩进里面的,都属于同一个代
2023-01-31
Shell脚本IF条件判断和判断条件总结
前言:无论什么编程语言都离不开条件判断。SHELL也不例外。if list then do something here elif list then do another thing here else do something else
2022-06-04
2024-04-02
2024-04-02
2024-04-02
python中if多个条件如何写
在Python中,可以使用`if`语句来实现多个条件的判断。下面有几种常见的方法:1. 使用逻辑运算符 `and` 和 `or`:可以在`if`语句中使用逻辑运算符来连接多个条件。例如:```pythonif condition1 and
2023-08-12
MySQL If 语句有多个条件吗?
您可以在 AND 或 OR 运算符的帮助下在具有多个条件的存储过程中使用 if 语句。语法如下 -DECLARE X int;DECLARE Y int;SET X = value1;SET Y = value2;IF ( (X <
2023-10-22
2024-04-02