正在加载视频...

视频加载失败

Software engineering is about tradeoffs. Let's talk about how data fetching happens in different meta-frameworks and what the trade-offs of those approaches are.

44,302 次观看 • 2 年前 •via X (Twitter)

10 条评论

Pedro Cattori 的头像
Pedro Cattori2 年前

That looks familiar! I proposed pretty much exactly this API in a Remix RFC a while back. The trade-off from our perspective is that it requires even more compiler magic and makes normal refactors more likely to break correctness.

Miško Hevery (AngularJS/Angular/Qwik) 的头像
Miško Hevery (AngularJS/Angular/Qwik)2 年前

Yes this is solved with the code extraction magic of $().

JLarky 的头像
JLarky2 年前

Well, you can technically do multi loader patter with RSC by exporting data function that starts promise and inside the component you just use it with React.use

Miško Hevery (AngularJS/Angular/Qwik) 的头像
Miško Hevery (AngularJS/Angular/Qwik)2 年前

Yes as I said there are ways around it. But I am more interested what is available out of the box.

Paul 的头像
Paul2 年前

Great vid Misko! Man, data is confusing!

dohn 的头像
dohn2 年前

this is great! i'd love one about mutations with loader revalidation

Shelton Louis 的头像
Shelton Louis2 年前

Vue is also going for the multi-loader approach. But we have to write keys but you don't why? I know this is a minor inconvenience but SSR mechanics make devs do too much work!

Miško Hevery (AngularJS/Angular/Qwik) 的头像
Miško Hevery (AngularJS/Angular/Qwik)2 年前

Could you point me to some docs / code examples? We don't because of $() 1. creates the keys automatically for you and 2. allows you to directly refer to server code without pulling it into the client

RumNCode 🥃 的头像
RumNCode 🥃2 年前

I love the video though wish you would have used the same example of artist and playlist so it's a 1-1 example

Miško Hevery (AngularJS/Angular/Qwik) 的头像
Miško Hevery (AngularJS/Angular/Qwik)2 年前

Thanks for the feedback. That is a fair point.

相关视频