如何使用复合卡片下巴链接到外部URL

时间:2019-07-02 21:14:40

标签: url hyperlink bixby

在文档中说,可以使用复合卡片下巴链接/冲压到外部URL。但是,当我尝试这样的事情时:

chin {
  url {
    template ("#{value (model.webUrl)}")
  }
}

它不起作用。如何获得带有指向外部URL的链接的下巴?

1 个答案:

答案 0 :(得分:3)

要使用Chin打孔,您需要添加以下内容:

  1. content
  2. 具有URL链接值的插槽

因此,以下方法将起作用:

  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")
              }
            }
          }
        }
      }
    }
  }