Angularjs 필요 에 따라 인 스 턴 스 코드 를 조회 합 니 다.

과정 정보 관리 인터페이스 에 이런 수요 가 있다.과정 유형 이 선택 과목 일 때 과정 성격 을 선택 할 수 있 고 다른 과정 유형 일 때 과정 성격 을 선택 할 필요 가 없다.
这里写图片描述  
这里写图片描述  
코드:

/**
 *            
 */
 getCourseTypeNameOptions(){
  let url = "teachingManagement-web/course/queryAllCourseType";
  this.http.get(url).subscribe(
   res =>{
    this.courseTypeNameOptions = res.json().data;

    //       ,        ,    ,      
    this.courseTypeNameOptions.forEach(item =>{
    JSON.stringify(item);
    console.log(item);
    if(item.dictionaryName == "     "){
     this.getCourseNatureNameOptions();
    }else{
     return;
    }
    })
   }
  );
 }
 /**
 *           ,       ;    ,         
 * @param type 
 */
 changeType(type:string){
 let dictionaryName=this.courseTypeNameOptions.find(x=>x.id==type).dictionaryName;//         
 this.dictionaryName=dictionaryName; 
 if(this.dictionaryName=="     "){
  this.renderer2.removeAttribute(this.courseNature.nativeElement,"disabled");
 }else{ 
  this.courseInfo.courseNatureId=""; 
  this.renderer2.setAttribute(this.courseNature.nativeElement,"disabled","disabled");
 }
 }
총결산
위 에서 말 한 것 은 편집장 이 여러분 에 게 소개 한 Angularjs 가 필요 에 따라 인 스 턴 스 코드 를 조회 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.편집장 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기