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.
我有一个带有复选框的项目列表,最后有一个标记为“全选”的复选框。当用户选中“全选”复选框,或者甚至单击按钮时,我想检查所有项目。有没有办法做到这一点或这是不可能的?
不幸的是,这是不可能的。您编写的所有代码都在服务器端运行,因此没有客户端代码来更新您的 UI。更改卡片内容的唯一方法是用新卡片替换卡片。您可以通过返回一种带有您想要发生的更改的克隆卡来模拟此操作,但是因为它将从服务器返回,所以它不会像您希望的那样无缝。我希望这会有所帮助。