Results 4 comments of aisq2008

Thanks for your reply! Becuse today's web sites are builted with separate front-end and back-end, now i have a front-end project ,and i want to access the back-end data while...

It's have no proxy function, i can't use it to access the back-end server data.

@galenlin 我还是不清楚怎么实现动态加载,并且我觉得动态加载这个功能还是很重要的,能实现很多功能,满足很多实际的应用场景,而且插件的意义就在这里。 另外: 1 如果你知道怎么实现动态加载能否给出个简单的例子,不是Sample的例子程序。 2 你说在Sample实例程序中,我看了下还是不清楚具体在哪。我 看例子中有个update能下载动态从网上下载下来,但是下载后不能立马运行,需要重新启动APP才行。

we can use the follow code to auto redirect from any page to any other page ```rust use wasm_bindgen::UnwrapThrowExt; use web_sys::window; let document = window() .expect_throw("window is undefined").location().assign("/test"); ```