- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我遇到了这个问题,到目前为止似乎没有任何答案。虽然我在我的 node_modules 文件夹中看到了 tslib。感谢是否有人可以帮助确定我的代码有什么问题。我已经看到对类似问题的其他回复,我尝试删除 node_modules 并重建整个项目。但我仍然遇到同样的问题
Uncaught Error: Cannot find module "tslib".
at webpackEmptyContext (VM2488 main.js:11)
at VM2487 vendor.js:30768
at push../node_modules/@angular/compiler/src/core.js (VM2487 vendor.js:30756)
at Object../node_modules/@angular/compiler/src/core.js (VM2487 vendor.js:30765)
at __webpack_require__ (VM2484 runtime.js:77)
at Object../src/app/data.service.ts (VM2488 main.js:2712)
at __webpack_require__ (VM2484 runtime.js:77)
at Object../src/app/Security/Security.service.ts (VM2488 main.js:1923)
at __webpack_require__ (VM2484 runtime.js:77)
at Object../src/app/Security/Security.component.ts (VM2488 main.js:1556)
包.json
{
"name": "ranetworkfe",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.3",
"@angular/cli": "^6.1.2",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/forms": "^6.0.3",
"@angular/http": "^6.0.3",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"bootstrap": "^4.1.3",
"core-js": "^2.5.4",
"express": "^4.16.3",
"font-awesome": "^4.7.0",
"jasmine": "^3.1.0",
"jquery": "^3.3.1",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.2",
"tslib": "^1.9.3",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "^6.1.2",
"@angular/compiler-cli": "^6.0.3",
"@angular/language-service": "^6.0.3",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.4.0",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"tslib": "^1.9.3",
"typescript": "~2.7.2"
}
}
tsconfig.js
{
"compilerOptions": {
"baseUrl": "",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"importHelpers": true,
"typeRoots": [
"../node_modules/@types"
]
}
}
数据服务.ts
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import { Observable } from 'rxjs';
import { map, filter, scan, catchError } from 'rxjs/operators';
import { Type } from '@angular/compiler/src/core';
@Injectable()
export class DataService<Type> {
private resolveSuffix = '?resolve=true';
private actionUrl: string;
private headers: Headers;
constructor(private http: Http) {
this.actionUrl = '/api/';
this.headers = new Headers();
this.headers.append('Content-Type', 'application/json');
this.headers.append('Accept', 'application/json');
}
public getAll(ns: string): Observable<Type[]> {
console.log('GetAll ' + ns + ' to ' + this.actionUrl + ns);
return this.http.get(`${this.actionUrl}${ns}`).pipe(
map(response => {
const chamados = response.json();
return chamados.map((chamado) => new Type(chamado));
// catchError(this.handleError);
}
// catchError(this.handleError);
)
// catchError(this.handleError);
).catch(this.handleError)
//.map(this.extractData)
}
public getSingle(ns: string, id: string): Observable<Type> {
console.log('GetSingle ' + ns);
return this.http.get(this.actionUrl + ns + '/' + id + this.resolveSuffix).pipe(
//.map(this.extractData)
map(response => {
const chamados = response.json();
return chamados.map((chamado) => new Type(chamado));
}
)
)
//catchError(this.handleError);
}
public add(ns: string, asset: Type): Observable<Type> {
console.log('Entered DataService add');
console.log('Add ' + ns);
console.log('asset', asset);
return this.http.post(this.actionUrl + ns, asset).pipe(
//.map(this.extractData)
map(response => {
const chamados = response.json();
return chamados.map((chamado) => new Type(chamado));
}))
// catchError(this.handleError);
//.map(this.extractData)
//.catch(this.handleError);
}
public update(ns: string, id: string, itemToUpdate: Type): Observable<Type> {
console.log('Update ' + ns);
console.log('what is the id?', id);
console.log('what is the updated item?', itemToUpdate);
console.log('what is the updated item?', JSON.stringify(itemToUpdate));
return this.http.put(`${this.actionUrl}${ns}/${id}`, itemToUpdate).pipe(
//.map(this.extractData)
map(response => {
const chamados = response.json();
return chamados.map((chamado) => new Type(chamado));
}))
// catchError(this.handleError);
// .map(this.extractData)
//.catch(this.handleError);
}
public delete(ns: string, id: string): Observable<Type> {
console.log('Delete ' + ns);
return this.http.delete(this.actionUrl + ns + '/' + id).pipe(
//.map(this.extractData)
map(response => {
const chamados = response.json();
return chamados.map((chamado) => new Type(chamado));
}))
//catchError(this.handleError);
// .map(this.extractData)
//.catch(this.handleError);
}
private handleError(error: any): Observable<string> {
// In a real world app, we might use a remote logging infrastructure
// We'd also dig deeper into the error to get a better message
const errMsg = (error.message) ? error.message :
error.status ? `${error.status} - ${error.statusText}` : 'Server error';
console.error(errMsg); // log to console instead
return Observable.throw(errMsg);
}
private extractData(res: Response): any {
return res.json();
}
}
最佳答案
我通过删除类型的错误导入解决了这个问题。这应该来自 Angular Core
删除
import { Type } from '@angular/compiler/src/core';
更新
import { Injectable, Type } from '@angular/core';
关于angular - 找不到模块 "tslib",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51732554/
我最近在我的机器上安装了 cx_Oracle 模块,以便连接到远程 Oracle 数据库服务器。 (我身边没有 Oracle 客户端)。 Python:版本 2.7 x86 Oracle:版本 11.
我想从 python timeit 模块检查打印以下内容需要多少时间,如何打印, import timeit x = [x for x in range(10000)] timeit.timeit("
我盯着 vs 代码编辑器上的 java 脚本编码,当我尝试将外部模块包含到我的项目中时,代码编辑器提出了这样的建议 -->(文件是 CommonJS 模块;它可能会转换为 ES6 模块。 )..有什么
我有一个 Node 应用程序,我想在标准 ES6 模块格式中使用(即 "type": "module" in the package.json ,并始终使用 import 和 export)而不转译为
我正在学习将 BlueprintJS 合并到我的 React 网络应用程序中,并且在加载某些 CSS 模块时遇到了很多麻烦。 我已经安装了 npm install @blueprintjs/core和
我需要重构一堆具有这样的调用的文件 define(['module1','module2','module3' etc...], function(a, b, c etc...) { //bun
我是 Angular 的新手,正在学习各种教程(Codecademy、thinkster.io 等),并且已经看到了声明应用程序容器的两种方法。首先: var app = angular.module
我正在尝试将 OUnit 与 OCaml 一起使用。 单元代码源码(unit.ml)如下: open OUnit let empty_list = [] let list_a = [1;2;3] le
我在 Angular 1.x 应用程序中使用 webpack 和 ES6 模块。在我设置的 webpack.config 中: resolve: { alias: { 'angular':
internal/modules/cjs/loader.js:750 return process.dlopen(module, path.toNamespacedPath(filename));
在本教程中,您将借助示例了解 JavaScript 中的模块。 随着我们的程序变得越来越大,它可能包含许多行代码。您可以使用模块根据功能将代码分隔在单独的文件中,而不是将所有内容都放在一个文件
我想知道是否可以将此代码更改为仅调用 MyModule.RED 而不是 MyModule.COLORS.RED。我尝试将 mod 设置为变量来存储颜色,但似乎不起作用。难道是我方法不对? (funct
我有以下代码。它是一个 JavaScript 模块。 (function() { // Object var Cahootsy; Cahootsy = { hello:
关闭。这个问题是 opinion-based 。它目前不接受答案。 想要改进这个问题?更新问题,以便 editing this post 可以用事实和引文来回答它。 关闭 2 年前。 Improve
从用户的角度来看,一个模块能够通过 require 加载并返回一个 table,模块导出的接口都被定义在此 table 中(此 table 被作为一个 namespace)。所有的标准库都是模块。标
Ruby的模块非常类似类,除了: 模块不可以有实体 模块不可以有子类 模块由module...end定义. 实际上...模块的'模块类'是'类的类'这个类的父类.搞懂了吗?不懂?让我们继续看
我有一个脚本,它从 CLI 获取 3 个输入变量并将其分别插入到 3 个变量: GetOptions("old_path=s" => \$old_path, "var=s" =
我有一个简单的 python 包,其目录结构如下: wibble | |-----foo | |----ping.py | |-----bar | |----pong.py 简单的
这种语法会非常有用——这不起作用有什么原因吗?谢谢! module Foo = { let bar: string = "bar" }; let bar = Foo.bar; /* works *
我想运行一个命令: - name: install pip shell: "python {"changed": true, "cmd": "python <(curl https://boot
我是一名优秀的程序员,十分优秀!