Angular2 和 Turbolinks

Angular2 and Turbolinks

情况是这样的:我正在使用异步。使用 systemJS 加载脚本(通过脚本,我的意思是 jQuery、Angular2、...)。现在我想在其中实施 Turbolinks。一切正常,但我的 angular 组件仅在第一次呈现。如果我使用 Turbolinks 查看下一页,我的组件不会呈现。对象检查器和源代码中没有错误只是这个:

<search-app></search-app>

我已经在对象检查器中进行了疲倦的测试,但是在第二页引导之后,这只是 HTML 标签。

这是我在页面 Head 标记中用 SystemJS 加载的脚本:

System.config({

            meta: {
                '/bundles/frontall': { format: 'global' },
                '/bundles/raphael': { format: 'global' },
                '/bundles/zopim': { format: 'global' },
                '/bundles/angular2': { format: 'global' }
            },

            packages: {
                'angular': {
                    format: 'register',
                    defaultExtension: 'js'
                },

                'angular2': {
                    format: 'global',
                    defaultExtension: 'js'
                },

                'rxjs': {
                    format: 'global',
                    defaultExtension: 'js'
                }
            },

            paths: {
                'angular2/*': 'scripts/angular2/*',
                'rxjs/*': 'scripts/rxjs/*'
            }
        });


         System.import('/bundles/frontall').then(function () {
            Promise.all([
                System.import('/bundles/zopim'),
                System.import('/bundles/raphael'),
                System.import('bundles/angular2'),
                @RenderSection("asyncScripts", required: false)
            ]).then(function () {

            System.import('angular/searchApp');
        });

在 frontAll 包中是文件 site.js,我在其中重新初始化所有组件:

function componentInit() {

//init material design
$.material.init();

//init texarea autosize
autosize($('textarea'));

//init parallax
$('.parallax-window').parallax();

//init smooth scroll
//SmoothScroll();

//init css3 animate it
$.animateIt();
$.doTimeout();
$.animateItInit();

$.srSmoothscroll({
    step: 80,
    speed: 90,
    ease: 'linear',
    target: $('body'),
    container: $(window)
});  
}

$(function () {
    componentInit();

});

$(document).on('page:load', function () {
    componentInit();
});

Angular 2 版本是 beta 7。有人知道问题出在哪里吗?非常感谢!

我需要将它添加到我的 angular2 应用程序并且它可以工作:

jQuery(function () { 
    bootstrap(searchApp, [ElementRef, TournamentSearchService]); 
}); 
jQuery(document).on('page:load', function () { 
    bootstrap(searchApp, [ElementRef, TournamentSearchService]); 
});