Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有这样的记录:
type Library = { books : [Book] } type Book = { title : String, year : Int }
我想动态创建一个 UI 来填充图书馆记录。我想要一个“添加”按钮,它将为每本书创建两个文本字段。
任何文本字段内的编辑将立即在记录结构中同步。
我怎么能用 elm 0.12 做到这一点?
了解交互式 UI 元素并了解TODO 列表示例,这与您想要获取的内容几乎是同构的。