浏览代码

fix router resource docs

Evan Almloff 1 年之前
父节点
当前提交
77b08f2330
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      examples/router_resource.rs

+ 3 - 4
examples/router_resource.rs

@@ -25,16 +25,15 @@ fn App() -> Element {
     }
 }
 
+// We use id: ReadOnlySignal<i32> instead of id: i32 to make id work with reactive hooks
+// Any i32 we pass in will automatically be converted into a ReadOnlySignal<i32>
 #[component]
 fn Blog(id: ReadOnlySignal<i32>) -> Element {
     async fn future(n: i32) -> i32 {
         n
     }
 
-    // if you use the naive approach, the "Blog post {id}" below will never update when clicking links!
-    // let res = use_resource(move || future(id));
-
-    // the use_reactive hook is required to properly update when clicking links to this component, from this component
+    // Because we accept ReadOnlySignal<i32> instead of i32, the resource will automatically subscribe to the id when we read it
     let res = use_resource(move || future(id()));
 
     match res() {