Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
node.jsとexpressを使用して、expressアプリケーションのレイアウトを一度レンダリングできるかどうか疑問に思っていました。レイアウト ページでストリームを再生したいのですが、宣言したブロックにレンダリングするたびにストリームが停止するのではないかと心配しています。
簡単な ajax の例:
$.get('url', function(response){ $('#divToUpdateId').html(response); });
またはこれは同じです:
$('#divToUpdateId').load('url');