dart-lang / http

A composable API for making HTTP requests in Dart.
https://pub.dev/packages/http
BSD 3-Clause "New" or "Revised" License
1.02k stars 354 forks source link

The streaming request will only return the result once on the flutter web platform。 #926

Open stormdzh opened 1 year ago

stormdzh commented 1 year ago

The streaming request will only return the result once on the flutter web platform, and cannot return the result of a single word, but it can return a single result on android and ios. Is it because the streaming request on the web side does not support returning words one by one?

Josecodesalot commented 1 year ago

Meaning that your stream is returning the entire say... sentence at once, rather than word by word?

On Web this seems to be a bug.