Angular 15 中的 Mat 滑块值

huangapple go评论69阅读模式
英文:

Mat Slider Value in Angular 15

问题

代码在Angular 14中运行正常,但在Angular 15中不起作用。

    <mat-slider
            min="1"
            max="150"
            step="10"
            value="55"
            #itemHeight
    >
    </mat-slider>

    <label> {{ itemHeight.value  }} hie </label>

StackBlitz链接 => https://stackblitz.com/edit/angular-ixbgdr?file=src%2Fmain.ts

英文:

The code used to work in Angular 14 but is not working in Angular 15.

    &lt;mat-slider
            min=&quot;1&quot;
            max=&quot;150&quot;
            step=&quot;10&quot;
            value=&quot;55&quot;
            #itemHeight
     &gt;
     &lt;/mat-slider&gt;

     &lt;label&gt; {{ itemHeight.value  }} hie &lt;/label&gt;

StackBlitz link => https://stackblitz.com/edit/angular-ixbgdr?file=src%2Fmain.ts

答案1

得分: 2

你现在必须将输入传递给滑块:

<mat-slider min="1" max="5" step="0.5" value="1.5">
  <input matSliderThumb #itemHeight>
</mat-slider>

<label>{{itemHeight.value}}</label>
英文:

You now have to pass an input to the slider :

  &lt;mat-slider min=&quot;1&quot; max=&quot;5&quot; step=&quot;0.5&quot; value=&quot;1.5&quot;&gt;
     &lt;input matSliderThumb #itemHeight&gt;
  &lt;/mat-slider&gt;

  &lt;label&gt;  {{itemHeight.value}} &lt;/label&gt;

答案2

得分: 0

MDC迁移指南清晰地概述了任何更改。

您也可以从滑块组件的文档中找到您的答案 - Material 文档

英文:

Any changes are clearly outlined in the MDC migration guide - MDC Migration Guide

You would have found your answer also from the docs for the slider component - Material Docs

huangapple
  • 本文由 发表于 2023年2月13日 23:26:00
  • 转载请务必保留本文链接:https://go.coder-hub.com/75437903.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定