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.
meteor を使用して 1 つの小さなアプリを作成しました。ローカルホストでアプリを実行すると、うまく機能します。しかし、リモートのラップトップまたはデスクトップからそのアプリにアクセスすると、アプリはアプリの次のページにリダイレクトしません。
コマンドを使用してリダイレクトしました:
$('#right2').html(Meteor.ui.chunk(Template.MessageInboxDetails));
何か提案をお願いできますか?
ui.chunk現在は廃止されていると思います。
ui.chunk
私は通常、DOM にテンプレートを詰め込んでページ ルーティングを行うのは好きではありません。
このことを考慮:
{{{display_page}}} Template.whatever.display_page = function() { return Template[Session.get("current_page_id")]() }
あとは、イベントにセッションを設定して新しいページにルーティングするだけです