情况如下:我正在使用异步。使用systemJS加载脚本(通过脚本,我的意思是jQuery,Angular2,...)。现在我想实现Turbolinks。一切都很好,但我的角度组件只是第一次渲染。如果我使用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.有谁知道问题出在哪里?非常感谢!
答案 0 :(得分:0)
我需要将它添加到我的angular2应用程序中,它可以工作:
jQuery(function () {
bootstrap(searchApp, [ElementRef, TournamentSearchService]);
});
jQuery(document).on('page:load', function () {
bootstrap(searchApp, [ElementRef, TournamentSearchService]);
});