angular-material 相关问题

Angular Material项目是Angular中Material Design的实现。该项目基于Material Design系统提供了一组可重用,经过良好测试和可访问的UI组件。不要将此标记用于AngularJS Material,即旧版AngularJS框架的Material Design实现。


角材料自动完成数据源可观察到

import { Injectable } from '@angular/core'; import { BehaviorSubject, map, Observable, shareReplay } from 'rxjs'; import { HttpClient } from '@angular/common/http'; import { Asset } from '../interfaces/coin-api/asset'; @Injectable({ providedIn: 'root' }) export class CoinApiStore { private subject = new BehaviorSubject<Asset[]>([]); private data$ : Observable<Asset[]> = this.subject.asObservable(); constructor(private http: HttpClient) { this.data$ = this.getDataFromCoinApi(); } public getData(): Observable<Asset[]> { return this.data$.pipe( map(assets => assets.sort(this.sortAssets).slice(0, 10)) ); } public getFilteredData(value: string): Observable<Asset[]> { return this.data$.pipe( map(assets => assets.filter(asset => asset.name?.toLocaleUpperCase().includes(value)).sort(this.sortAssets).slice(0, 10)) ); } private getDataFromCoinApi(): Observable<Asset[]> { const key = process.env['API_KEY']; const url = `https://rest.coinapi.io/v1/assets?apikey=${key}`; return this.http.get<Asset[]>(url).pipe(shareReplay(1)); } private sortAssets(a1: Asset, a2: Asset) { return (a1.name ?? a1.asset_id).localeCompare((a2.name ?? a2.asset_id)); } }

回答 1 投票 0

程序上关闭所有打开的CDK-ROVERLAY

我有一个带有多个哑光的Mattabgroup。我设置了一个键盘快捷键以更改活动选项卡(ctrl+ - > =下一个选项卡和Ctrl+<- = previous tab). I also set function that focus the first input o...

回答 1 投票 0

updateAngular17

I更新了我在17版上的Angular应用程序,在更新之前,我摆脱了旧版组件,我还使用了Angular材料。但是在更新了17上的角材料之后,我有问题

回答 1 投票 0

角材料sidenav +路线=>默认选择

我在我的应用程序中使用材料侧边栏并与路由器导航。基本上看起来像 我在我的应用程序中使用材料侧边栏并与路由器导航。基本上看起来像 <mat-sidenav-container [hasBackdrop]="true" autosize> <mat-sidenav (opened)="openCollapsed()" [opened]="!isMobile" [fixedInViewport]="!isMobile" [fixedTopGap]="64" [fixedBottomGap]="40" [mode]="isMobile ? 'over' : 'side'" > <mat-nav-list> <a *ngFor="let route of routes" mat-list-item (click)="selectNavItem(route.path)" > {{ route.label }}</a > </mat-nav-list> </mat-sidenav> <mat-sidenav-content> <div class="app-result"> <router-outlet></router-outlet> </div> </mat-sidenav-content> </mat-sidenav-container> 基本上是路由和一切工作。但是两个很奇怪 路由显示组件 - 但是我需要单击组件内部以激活它。但是,由于我已经选择了一条路线,如何防止此外单击? i 单击组件 - 侧边栏正在关闭,尽管应保持打开 - 至少在桌面上。在移动设备上,它应该关闭,但我看不出可以在哪里影响这种行为。 fixedInViewport是相应设置的 - 因此没有真正的想法。 我在stackblitz上的项目 当导航触发Navbar关闭时,这将直接显示组件。 selectNavItem(route: string): void { this.router.navigate([route]).then(() => { this.sidenav().close(); }); } 调整大小时,切换仅用于桌面倒塌: ngOnInit() { this.observer.observe(['(max-width: 800px)']).subscribe((screenSize) => { this.isMobile = screenSize.matches; if(!screenSize.matches) { this.isCollapsed = true; } }); } 打开的是在桌面上触发的,该桌面打开了Sidenav,以阻止它,我们可以使用&&并仅在Mobile上触发该功能。 <mat-sidenav-container [hasBackdrop]="true" autosize> <mat-sidenav (opened)="isMobile && openCollapsed()"

回答 1 投票 0


角材料枣钉箭头颜色

在材料datepicker中,有一个小箭头可更改年度,我设法在日历中更改了每个组件的颜色,但没有更改该箭头。 我在浏览器中检查了它,发现了一个垫子。

回答 2 投票 0

如何将组件的投影含量移动到投影后的不同位置,例如在角度材料中

内容1 在角度材料中有一个组件MatTab,我们这样使用它: <mat-tab-group> <mat-tab label="First"> Content 1 </mat-tab> <mat-tab label="Second"> Content 2 </mat-tab> <mat-tab label="Third"> Content 3 </mat-tab> </mat-tab-group> 但是,在检查了在DOM中创建的元素时,元素不存在,并且预测的内容在<mat-tab>中移动。 我想将投影内容移动到其他地方,并删除内容在开始时投影的元素。我该如何实现这种行为? 在角度,您可以使用ViewContainerRef和Templateref实现此行为,以动态移动投影内容,同时确保原始组件包装器消失。以下是方法: <mat-tab-body> parent component中的usage import { AfterViewInit, Component, ContentChild, TemplateRef, ViewContainerRef } from '@angular/core'; @Component({ selector: 'my-projection', template: `<ng-template #contentTemplate><ng-content></ng-content></ng-template>`, }) export class MyProjectionComponent implements AfterViewInit { @ContentChild('contentTemplate', { static: true }) contentTemplate!: TemplateRef<any>; constructor(private viewContainerRef: ViewContainerRef) {} ngAfterViewInit() { // Move projected content to parent container this.viewContainerRef.createEmbeddedView(this.contentTemplate); } }

回答 1 投票 0

端材料MD列表不刷新后不刷新

我实施了这样的MD列表: <md-list> <md-list-item class="md-3-line" ng-repeat="file in index.files | orderBy:'type'" ondrop="drop(event)" ondragover="allowDrop(event)" ng-click="$parent.getContent(file, $event)"> <img ng-src="{{file.face}}" class="md-avatar" alt="{{file.name}}"> <div class="md-list-item-text" layout="column"> <h3>{{ file.name }}</h3> <h4 ng-if="file.size > 0">{{ file.size }}</h4> <p>{{ file.mime }}</p> </div> <div class="md-list-item-text" layout="column" style="max-width: 300px;"> <p>{{ file.lastmod }}</p> </div> </md-list-item> </md-list> 您可以看到,列表将通过称为文件的容器迭代。从一开始,它是在我的索引控制器中定义的: this.files = directoryService.getContent(); 所谓的服务“ DirectoryService”提供了目录的内容,并以此为实现: app.factory('directoryService', function() { var content = []; return { path, getContent: function() { console.log("returning directory content"); return content; }, updateList: function(incfiles) { console.log("refreshing directory content"); content.length = 0; Array.prototype.push.apply(content, incfiles); } }; }); 连接到WebDAV服务器后,列表显示了根目录中的所有文件,该文件正常工作。单击列表中的目录后,方法(getContent)再次呼叫服务器(HTTP调用)单击目录的内容: $scope.getContent = (file, ev) => { console.log(file); if (file.type == "directory") { listDirectoryContent(currentPath + file.name); } }; 方法listDirectoryContent()将调用服务器并更新与MD-List连接的DirectoryService.files对象: listDirectoryContent = (path) => { var lclfiles = []; var imagePathFolder = 'public/img/folder.svg'; var imagePathFile = 'public/img/file.svg'; var imagePathUp = 'public/img/back.svg'; clientService.client .getDirectoryContents(path) .then(function(contents) { //Set default folders. lclfiles.push({ ... }); contents.forEach(function(element) { if (element.type == "file") { lclfiles.push({ ... }); } else { lclfiles.push({ ... }); } }, this); directoryService.updateList(lclfiles); }) .catch(function(err) { alert(err); console.error(err); }); } }); 因此,基本上发生的是,我要等到使用.then()完成HTTP调用。之后,我通过调用DirectoryService.updatelist(NewFiles)将新内容放入DirectoryService.files阵列中。 因此,接下来会发生什么,MD列表在我单击随机文件之前不会更新其内容...单击文件后,列表正确地显示了.files的内容。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 thanks guys 我很幸运,遇到了一个也有这个问题的人。我不知道这是否是一个好方法!但这对我有用。 在我的目录服务中,我将更新方法内容包围了以下语句: updateList: function(incfiles) { console.log("refreshing directory content"); $q.when(true).then(() => { content.length = 0; Array.prototype.push.apply(content, incfiles); console.log(content); }); } 清单现在正在工作。单击目录后,一旦完成HTTP调用,新内容就会显示。

回答 1 投票 0


如何将Matinput高度降低到一定值?

可透明输入 我有来自角材料库的简单matinput元素: <mat-form-field class="example-form-field"> <mat-label>Clearable input</mat-label> <input matInput type="text" [(ngModel)]="value"> @if (value) { <button matSuffix mat-icon-button aria-label="Clear" (click)="value=''"> <mat-icon>close</mat-icon> </button> } </mat-form-field> 该Matinput的高度为56px。我需要将这个高度降低到28px。请帮助我 这里是一个livedemo。 您可以尝试设置这些CSS变量以自定义高度。 您应打开检查元素并检查CSS变量/修改它以更好地适合您的要求。 这些自定义有一个很大的问题,因为它们不受角材料的支持,并且当您升级到将来的版本时可能会破裂。 :host { --mat-form-field-container-height: 42px; --mat-form-field-filled-with-label-container-padding-top: 15px; --mat-form-field-filled-with-label-container-padding-bottom: 3px; } stackblitzdemo

回答 1 投票 0

角材料不显示SelectionChange事件

我在不显示选择change的角材料中获得问题 我在不显示SelectionChange的角度材料中获得问题 <!-- Customer Dropdown --> <mat-form-field appearance="fill" class="customer-dropdown"> <mat-label>Select Customer</mat-label> <mat-select (selectionChange)="onCustomerChange($event.value)"> <mat-option *ngFor="let customer of customers$ | async as customers" [value]="customer.id"> {{ customer.name }} </mat-option> </mat-select> </mat-form-field> customerWithFilter$ = this.customerWithProjects$.pipe(map(customers => customers.filter(customers => customers.id == this.selectedCustomerId ) )); filterProjects(): void { this.customerWithFilter$ } onCustomerChange(customerId: number): void { customerId = this.selectedCustomerId ; this.filterProjects(); } customerwithfilter可观察到的作品正确。 thanks对于穆拉利的建议,我在customer.first_name参数中找到了问题。 <mat-form-field appearance="fill" class="customer-dropdown"> <mat-label>Select Customer</mat-label> <mat-select (selectionChange)="onCustomerChange($event.value)"> <mat-option *ngFor="let customer of customers$ | async as customers" [value]="customer.id"> {{ customer.first_name }} </mat-option> </mat-select> </mat-form-field>

回答 1 投票 0


如何以编程方式触发选项脱落的角度材料自动完成?

I有一个角度自动完成组件,我试图在其他事件发生后TS文件中触发(optionselected)事件。我正在设置带有更新选项的输入。

回答 4 投票 0

无法解析MatdialogRef Angular4

这是我的(dialog.components.ts):

回答 4 投票 0

在角度项目上获取所有弃用元素

是否有一种方法可以在我的角度项目中获取所有弃用元素? (例如函数,属性等),因此我可以一次更改所有内容而不一次查看一个.ts文件。如果有用的话,知道...

回答 1 投票 0


如何防止角度修剪输入值

<input matInput #email="ngModel" name="email" [(ngModel)]="email" type="email" (ngModelChange)="onEmailChanged($event);" [pattern]="emailRegex">

回答 1 投票 0

角4 MAT-RADIO组,带有垫形式场返回误差

我已经尝试将Matinput设置为Mat-Radio组,就像我对MAT-SELECT一样,但行不通

回答 2 投票 0


最新问题
© www.soinside.com 2019 - 2025. All rights reserved.