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.
我有一个带有文本框和其他来自商店的只读值的 dojo 数据网格。在提交时,我想将 texbox 值与其他仅准备好的值一起发送到 java 控制器以进行进一步处理。我无法找到处理此案的正确方法。有人可以帮我吗
网格本身并非旨在直接与您的后端通信。尽管您可以覆盖它,但它不是Dojo 方式!
您需要做的是dojo/store/JsonRest通过传输机制(AJAX、轮询、套接字等)将您的 dgrid 附加到类似商店或您自己的商店grid.set('store', store)
dojo/store/JsonRest
grid.set('store', store)
您的网格将调用grid.save(),这将启动一个grid.store.put反过来将 AJAX 请求发送到您的后端。如果您需要更多帮助,请参阅dojo\store\JsonRest并告诉我。
grid.save()
grid.store.put
dojo\store\JsonRest