3

ColdFusionで使用<cfcontent type="text/event-stream">すると、英語以外の文字は疑問符として表示されます:???????123123???? ???。ただし、ページの残りの部分では英語以外の文字を問題なく表示できます。

私はこのtutuorialに従って、試しました

<cfheader name="Content-Type" value="text/event-stream; charset=utf-8">

そしてまた

<cfcontent type="text/event-stream; charset=utf-8">

どちらもChromeでは機能しません(検出されません。開発者ツールは、再接続せずに「保留中」と報告しました。

4

1 に答える 1

1

次のコードを試してみたところ、正常に動作しています(Chromeのコンソールに正しい文字が表示されています)...

testHTML5ServerSent イベント

    <HTML>

    <HEAD>
        <script language="javascript">
        if (!!window.EventSource) {
            var source = new EventSource('sendServerSentEvents.cfm');           
            source.addEventListener('message', function(e) { 
                                                    console.log(e.data);
                                                }, false);

source.addEventListener('open', function(e) {
  // Connection was opened.
}, false);

source.addEventListener('error', function(e) {
  if (e.eventPhase == EventSource.CLOSED) {
    // Connection was closed.
  }
}, false);

        } else {
            alert('not supported');// Result to xhr polling :(
        }


        </script>
    </HEAD>

    <BODY>

    </BODY>

</HTML>

sendServerSentEvents.cfm

    <cfcontent type="text/event-stream; charset=utf-8" >
data: éêtititiçà
</cfcontent>
于 2011-09-08T12:23:39.413 に答える