TypeError:无法读取未定义的属性“ toUpperCase”

时间:2018-11-19 10:48:56

标签: angular angular6 angular-forms angular-pipe

我尝试使用自定义管道。这是我的管道文件

import { Pipe, PipeTransform } from '@angular/core';
import { User } from 'src/app/user';
import { ApiService } from 'src/app/api.service';
import { Observable } from 'rxjs';
import { isNgTemplate } from '@angular/compiler';
import { map } from 'rxjs/operators';

@Pipe({
  name: 'my-pipe'

})
export class MyPipePipe implements PipeTransform {
  isEqual = false;
  api: ApiService;

  transform(post_id: number, users: Observable< User[]> ): any {
   // users = this.api.getUserList();
    users.subscribe(user => user.filter(userss => {
      if (userss.id === post_id && post_id !== null) { this.isEqual = true; } else {
        console.log(this.isEqual + ' ' + ' hataa');
      }
    }));

  }

我想要的只是不存在的用户无法发布。因此,我尝试将用户ID与发布的userId相等。这是我的html代码

    <div class="form-group">
      <label for="userId">User Id</label>
      <input type="number" class="form-control" id ="userId" name="userId" required [(ngModel)]="posts.userId">
     <!--<div   class="tetx text-danger" *ngIf="!isEqual" >Invalid Id!!!</div>--> 
      <div  *ngIf=" my-pipe: posts.userId " >

Invalidd


      </div>

    </div>

但是不幸的是我得到了这个错误:

  

[Angular] TypeError:无法读取未定义的属性“ toUpperCase”

1 个答案:

答案 0 :(得分:1)

该错误来自尝试编译模板的Angular编译器。

为管道选择另一个名称,即myPipe

@Pipe({
  name: 'myPipe'

...

*ngFor="let u of users_s | myPipe"

并且您必须在不传递值的情况下使用管道:

*ngIf=" my-pipe: posts.userId "

应该是这样:

*ngIf="postId | myPipe"