从枚举中创建选择项?

时间:2019-04-15 08:18:33

标签: bixby bixbystudio

我希望创建一个输入视图,用户可以在其中选择枚举符号列表。

例如,我的类型数是有限的,所以我将它们放入枚举中,例如“ Fantasy”和“ Sci-fi”

我尝试了下面的代码,但是什么也没有显示我检查了文档,但是所有示例示例都是基于已经有数据的概念。

是否有一种创建选择视图的方法,用户可以选择一个或多个项目,然后将其作为概念输出?

input-view {
  match {
    GenreNames(gnames)
  }
  message (Select Genre(s))

  render {
    selection-of (gnames) {
      where-each (one) {
        single-line {
          text {
            value (one)
            style (Detail_M_Soft)
          }
        }
      }
    }
  }
}

1 个答案:

答案 0 :(得分:2)

尝试一下:

input-view {
  match {
    GenreNames(gnames)
  }
  message (Select Genre(s))

  render {
    selection-of (gnames) {
      where-each (gnames) {
        single-line {
          text {
            value {
              template ("#{value(gnames)}")
            }
            style (Detail_M_Soft)
          }
        }
      }
    }
  }
}