diff --git a/docs/zh/guide/gone-vs-spring.md b/docs/zh/guide/gone-vs-spring.md index 0b7db4d..7230cc6 100644 --- a/docs/zh/guide/gone-vs-spring.md +++ b/docs/zh/guide/gone-vs-spring.md @@ -102,7 +102,7 @@ type UseConfig struct { HTTP参数注入,就是自动读取HTTP请求的Query参数,并注入到Controller的方法中。 **Gone**支持多种HTTP参数注入,可以取到URL、Header、Body、Cookie、Form、Path等参数, -参考:[HTTP 注入说明](http://localhost:8081/zh/references/http-inject.html) +参考:[HTTP 注入说明](https://goner.fun/zh/references/http-inject.html) ### 注入Query参数 #### Spring @@ -242,7 +242,7 @@ func (ctr *controller) Mount() gone.GinMountError { ``` **Gone**支持多种HTTP参数注入,可以取到URL、Header、Body、Cookie、Form、Path等参数, -参考:[HTTP 注入说明](http://localhost:8081/zh/references/http-inject.html) +参考:[HTTP 注入说明](https://goner.fun/zh/references/http-inject.html) ## 总结 **Spring**和**Gone**在依赖模块导入、依赖注入、配置注入以及HTTP参数注入方面有不同的实现方式。 diff --git a/docs/zh/quick-start/simple.md b/docs/zh/quick-start/simple.md index 30edd33..13a818a 100644 --- a/docs/zh/quick-start/simple.md +++ b/docs/zh/quick-start/simple.md @@ -51,4 +51,4 @@ func main() { Run() } ``` -在这个例子中,在Gone的准备阶段,通过[**埋葬**](http://localhost:8080/zh/guide/core-concept.html#bury-%E5%9F%8B%E8%91%AC)的方式将 Boss 和 Worker 导入到框架。在框架启动后,老板开始工作`in.boss.Do()`;老板工作中调用销售开始工作`b.seller.Do()`。 \ No newline at end of file +在这个例子中,在Gone的准备阶段,通过[**埋葬**](https://goner.fun/zh/guide/core-concept.html#bury-%E5%9F%8B%E8%91%AC)的方式将 Boss 和 Worker 导入到框架。在框架启动后,老板开始工作`in.boss.Do()`;老板工作中调用销售开始工作`b.seller.Do()`。 \ No newline at end of file