其中提供值的一種情況是從騾子流開始發生事件。
在他們的榜樣聽服務器活動
您可以將數據發送到客戶端
騾子流流:
<flow name="AjaxBridge">
<jms:inbound-endpoint topic="football.scores"/>
<ajax:outbound-endpoint channel="/football/scores"/>
</flow>
客戶頁:
<script type="text/javascript">
mule.subscribe("/football/scores", scoresCallback);
function scoresCallback(message)
{
console.debug("data:" + message.data);
if (!message.data)
{
console.debug("bad message format " + message);
return;
}
// logic goes here
...
}
</script>
在這種情況下,服務器上的事件觸發了要發送給客戶端的數據,因爲JQuery Ajax庫僅用於向服務器發送請求的客戶端。
我同意你的例子,但是我特別提到了RPC方法 – Sudarshan