微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net – AngularJs 2与ASP.NET 4.5.1

我想使用Angular 2作为现有ASP.NET 4应用程序的前端,即不是MVC 6 / ASP.NET CORE,我宁愿不使用节点,因为我们已经使用nuget作为包管理器.有人知道有什么资源可以指导我吗?

解决方法

为了回答我的原始问题,这是我们如何设法使用.net 4.5.1(我们最终不得不使用npm)使Angular 2运行.

在_Layout.cshtml的标题中,从cdn和已配置的SystemJ导入Angular 2文件.

<!-- 1. Load libraries -->
<!-- IE required polyfills,in this exact order -->
<script src="../../node_modules/es6-shim/es6-shim.min.js"></script>
<script src="../../node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="../../node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>

<script src="../../node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="../../node_modules/systemjs/dist/system.src.js"></script>
<script src="../../node_modules/rxjs/bundles/Rx.js"></script>
<script src="../../node_modules/angular2/bundles/angular2.dev.js"></script>

<!-- 2. Configure SystemJS -->
<script>
  System.config({
    packages: {
        'my-app': {
        format: 'register',defaultExtension: 'js'
      }
    }
  });
    System.import('my-app/main')
        .then(null,console.error.bind(console));
</script>

将package.json和tsconfig.json添加到项目的路由

packages.json:

{
 "name": "angular2-quickstart","version": "1.0.0","scripts": {
  "tsc": "tsc","tsc:w": "tsc -w","typings": "typings","postinstall": "typings install"
  },"license": "ISC","dependencies": {
  "angular2": "2.0.0-beta.9","systemjs": "0.19.24","es6-promise": "^3.0.2","es6-shim": "^0.35.0","reflect-Metadata": "0.1.2","rxjs": "5.0.0-beta.2","zone.js": "0.5.15"
 },"devDependencies": {
  "typescript": "^1.8.7","typings": "^0.7.5"
  }
}

tsconfig.json:

{
 "compileOnSave": true,"compilerOptions": {
 "target": "es5","module": "system","moduleResolution": "node","sourceMap": true,"emitDecoratorMetadata": true,"experimentalDecorators": true,"removeComments": false,"noImplicitAny": false
},"exclude": [
 "node_modules","typings/main","typings/main.d.ts"
 ]
}

如果您的机器上安装了节点和npm,则应自动下载所需的npm模块,并将其保存在node_modules文件夹中.您现在应该准备好设置一个Angular 2应用程序,我们使用this开始使用.

原文地址:https://www.jb51.cc/aspnet/250569.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐