这是我的枚举模型:
enum (Station) {
description (List of station in Bart Schedule)
symbol (12th St. Oakland City Center)
symbol (16th St. Mission)
}
我试图在选择框值中显示上述枚举模型,但它没有反映。
input-view{
match: Station(Station)
message(Where would you like to board from?)
render{
// auto-complete
selection-of (Station){
where-each (Station) {
single-line{
text{
value{
template ("#{value(Station)}")
}
}
}
}
}
}
}
请让我知道我做错了什么?提前致谢..