gpt4 book ai didi

angularjs - 将 Angular 1 与 TypeScript 和 SystemJS 结合使用的简单示例

转载 作者:搜寻专家 更新时间:2023-10-30 21:10:46 25 4
gpt4 key购买 nike

我一直在尝试将 TypeScript Angular 1 应用程序转换为使用 ES6 样式模块导入。

放弃使用 namespace 并使用 import 关键字来引入模块。例如

import * as angular from "angular";
import * as angularroute from "angular-route";

但是我遇到了一些问题。我从 Angular 收到错误:
未捕获( promise )错误:(SystemJS) [$injector:modulerr] 由于以下原因无法实例化模块 testApp:
错误:[$injector:modulerr] 由于以下原因无法实例化模块 ngRoute:
错误:[$injector:nomod] 模块“ngRoute”不可用!您要么拼错了模块名称,要么忘记加载它。如果注册模块,请确保将依赖项指定为第二个参数

为了说明这个问题,我在github上创建了两个应用程序:
1) Angular1WithNamespaces - 我想转换的原始应用程序。
2) Angular1WithSystemJS - 我的转换,有问题。

以下是存在问题的 Angular1WithSystemJS 示例的片段。

index.html

<!DOCTYPE html>
<html lang="en" ng-app="testApp">
<head><base href="/"></head>
<body >
<ng-view></ng-view>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="configs/systemjs.config.js"></script>
<script>
System.import('app/boot');
</script>
</body>
</html>

systemjs.config.js

System.config({
defaultJSExtensions: true,

paths: {
"npm:*": "../node_modules/*"
},
// map tells the System loader where to look for things
map: {
"angular": "npm:angular/angular.js",
"angular-route": "npm:angular-route/angular-route.js",
},
meta: {
'angular': {
format: 'global',
},
'angular-route': {
format: 'global',
},
}
});

boot.ts

/// <reference path="../typings/tsd.d.ts" />
import * as angular from "angular";
import * as angularroute from "angular-route";

let main = angular.module("testApp", ["ngRoute"]);

main.config(routeConfig)

routeConfig.$inject = ["$routeProvider"];
function routeConfig($routeProvider: angular.route.IRouteProvider): void {
$routeProvider
.when("/dashboard", {
templateUrl: "/app/dashboard.html",
})
.otherwise("/dashboard");
}

如能提供帮助,我们将不胜感激。

最佳答案

我通过阅读来自 https://legacy-to-the-edge.com/2015/01/21/using-es6-with-your-angularjs-project/ 的博客文章找到了解决方案

这与我如何为 angular-route 进行导入有关。最后只是改了一行。
boot.ts 中,我更改了导入语句:

import * as angularroute from "angular-route";

到:

import "angular-route";

我只能假设,后者也会运行模块文件中的脚本。
根据 developer.mozilla.org 的进口规范

import "my-module";
Import an entire module for side effects only, without importing any bindings.

固定版本在github Angular1WithSystemJSFixed

关于angularjs - 将 Angular 1 与 TypeScript 和 SystemJS 结合使用的简单示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40447214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com