使用评分 select angular

using Rating in ng select angular

我尝试在 ng select 中使用 p-rating 但是当我想点击评分时,如果我只想点击评分但是 ng select 被点击我的问题是我想点击评级但是点击我的下拉菜单后点击而不是评级 我的 html 代码

  <ng-select class="dir" [items]="Menu" bindLabel="title" bindValue="facode" [notFoundText]="NotFoundText"
        (search)="onSearch($event)" placeholder="جستجو در منو..." (change)="selectMenu($event)">
        <ng-template ng-option-tmp let-item="item" let-index="index">
          <p> {{item.title}} </p>
          <p-rating    stars="1" [cancel]="false"></p-rating>
        </ng-template>
      </ng-select>

请看照片

enter image description here

使用event.stopPropagation();在您的更改和搜索方法中。