在文档中说,可以使用复合卡片下巴链接/冲压到外部URL。但是,当我尝试这样的事情时:
chin {
url {
template ("#{value (model.webUrl)}")
}
}
它不起作用。如何获得带有指向外部URL的链接的下巴?
答案 0 :(得分:3)
要使用Chin打孔,您需要添加以下内容:
content
因此,以下方法将起作用:
render {
layout {
section {
content {
compound-card {
content {
single-line {
text {
value {
template ("Click below to Punch Out")
}
}
}
}
chin {
slot1 {
single-line {
text {
value {
template ("Link to Google")
}
}
}
}
url {
template ("http://www.google.com")
}
}
}
}
}
}
}