私はそれを行うための解決策またはパターンを見つけようとして約1時間潜んでいました(タイトルの参照)..私が言いたいことの例を挙げましょう:
Client-to-Server: Hey, I want information about "ww2" //using jquery's ajax .post() method
Server-to-Client: Ok, got your request, prepare to receive data asynchronously.
Server-to-Client: "World War II happen in 1939 to 1945"
//after couple of seconds
Server-to-Client: "The Alliance won the war."
//some more delay
Server-to-Client: "bla bla bla"
Server-to-Client: "thats it, im done for now".
明らかに、jquery を使用して受信するとすぐに、クライアントはデータを表示します。私の主な質問は、サーバー上で a を呼び出し、多くの s を非同期に返すにHttpPOST
はどうすればよいですか?Action
PartialView
サンプルで他の方法/アイデアがあれば、それは大歓迎です.