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.
我有一个看法。控制器正在执行一些逻辑,我在视图中按下一些按钮(数据传递到服务器并且我们有一个回调)。
我需要通过控制器更新(重新加载?)视图。
我不知道我是否理解,但是,如果您想在插入后重新加载网格,您需要这样做
yourGrid.getView().refresh()
如果要在插入后重新加载商店,则需要执行以下操作:
yourStore.load()
或通过网格
yourGrid.getStore().load()
在 store.sync() 的成功或回调函数中
我希望我有所帮助