在ASP.NET网站中呈现Angular 2应用程序
我有一个ASP.NET网站,我正在尝试将一些Angular 2内容加入其中。 网站上有各种各样的页面,有很多静态内容。 在某些页面上,我需要呈现一些呈现为Angular 2应用程序的动态内容。
/* CSS not important */ body { font-family: sans-serif; padding: 5px; } [data-dynamic-app] { color: white; padding: 8px; background: #4444ff; margin: 10px 0; }
<section>
<h2>Some Static Content</h2>
<p>
There is static content on the page that is rendered by the ASP.NET application.
</p>
</section>
<div data-dynamic-app="appA">Placeholder for App A</div>
<div data-dynamic-app="appB">Placeholder for App B</div>
链接地址: http://www.djcxy.com/p/31357.html
上一篇: side rendering of Angular 2 apps within an ASP.NET website