gpt4 book ai didi

Angular 构建找不到具有相对路径的模块(在 azure devops 上)

转载 作者:行者123 更新时间:2023-12-02 17:22:57 25 4
gpt4 key购买 nike

我在在 Azure Dev Ops Pipelines 上构建中型 Angular 7 项目时遇到问题。因此,我创建了一个最小的项目来重现该问题。

使用 Angular CLI (7.2.4) 我创建了一个新项目

ng new minimal-app

它可以在本地和 Azure 上构建得很好。我编辑了 app.component.ts 以使用我的 UserModel,第 2、11 和 14 行

import {Component} from '@angular/core';
import {UserModel} from '../Models/User.model';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'minimal-app';
user = new UserModel();

constructor() {
this.user.name = 'Jo';
}

}

User.model.ts 文件包含

export class UserModel {
id: number;
name: string;
}

这也可以在本地和 Azure 上编译。尝试添加嵌套模型时会出现问题,请参阅 Action.model.ts

export class ActionModel {
id: number;
datetime: string;
}

并更改 UserModel

import {ActionModel} from './Action.Model';

export class UserModel {
id: number;
name: string;
actions: ActionModel[];
}

这在本地有效,但在 Azure Dev Ops 上我得到了

ERROR in src/Models/User.model.ts(1,27): error TS2307: Cannot find module './Action.Model'.

##[error]Bash exited with code '1'

我没有更改任何 Angular 配置文件,它们都是新项目的默认配置。天蓝色管道 yml 是

# Node.js with Angular
# Build a Node.js project that uses Angular.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://learn.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
- master

pool:
vmImage: 'ubuntu-latest'

steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

- script: |
npm install -g @angular/cli
npm install
ng build --prod
displayName: 'npm install and build'

最佳答案

根据您的代码,我注意到您正在使用区分大小写的 Ubuntu 代理。

此外,您配置的模块是“Action.model”,但在导入时,您使用的名称是“Action.Model”。对于ubuntu和linux,由于区分大小写,无法识别为相同。

我认为您可以使用不区分大小写的 Windows 在本地执行这些脚本。这就是它在本地工作的原因。

因此,为了解决这个问题,您需要将脚本更改为:

import {ActionModel} from './Action.model';

export class UserModel {
id: number;
name: string;
actions: ActionModel[];
}

关于Angular 构建找不到具有相对路径的模块(在 azure devops 上),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56774041/

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