Skip to content

Commit 9c6e470

Browse files
committed
translate renderToReadableStream page
1 parent 6d180ba commit 9c6e470

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/reference/react-dom/server/renderToReadableStream.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -594,13 +594,13 @@ async function handler(request) {
594594
}
595595
```
596596
597-
A regular visitor will get a stream of progressively loaded content. A crawler will receive the final HTML output after all the data loads. However, this also means that the crawler will have to wait for *all* data, some of which might be slow to load or error. Depending on your app, you could choose to send the shell to the crawlers too.
597+
Normal bir ziyaretçi, kademeli olarak yüklenen içeriğin bir stream’ini alır. Bir crawler ise tüm veri yüklendikten sonra final HTML çıktısını alır. Ancak bu, crawler’ın *tüm* veriyi beklemesi gerektiği anlamına gelir; bazıları yavaş yüklenebilir veya hata verebilir. Uygulamanıza bağlı olarak, shell’i crawler’lara da göndermeyi tercih edebilirsiniz.
598598
599599
---
600600
601-
### Aborting server rendering {/*aborting-server-rendering*/}
601+
### Server render’ını iptal etmek {/*aborting-server-rendering*/}
602602
603-
You can force the server rendering to "give up" after a timeout:
603+
Server render’ının belirli bir süre sonra "vazgeçmesini" sağlayabilirsiniz:
604604
605605
```js {3,4-6,9}
606606
async function handler(request) {
@@ -622,4 +622,4 @@ async function handler(request) {
622622
// ...
623623
```
624624
625-
React will flush the remaining loading fallbacks as HTML, and will attempt to render the rest on the client.
625+
React, kalan loading fallback’ları HTML olarak flush eder ve geri kalan içeriği client üzerinde render etmeye çalışır.

0 commit comments

Comments
 (0)