angular2怎样根据接口获取的值来选中input和select

angular2怎样根据接口获取的值来选中input和select


慕尼黑8549860
浏览 599回答 2
2回答

子衿沉夜

app.html<select [(ngModel)]="comId"><option [value]="c.id" *ngFor="let c of comIdList">{{c.name}}</option></select><div><label *ngFor="let t of typeList"><input type="radio" (change)="type=t.id" name="type" [checked]="type===t.id">{{t.name}}</label></div>app.component.ts@Component({selector: 'app',templateUrl: 'src/app.html'})export class AppComponent implements OnInit {comIdList:any = [{id: 1, name: '中国公司'},{id: 2, name: '美国公司'},{id: 3, name: '德国公司'}];typeList:any = [{id: 1, name: '类型A'},{id: 2, name: '类型B'}];comId:number;type:number;constructor() {}ngOnInit() {setTimeout(()=> {this.comId = 3;this.type = 2;}, 1000);}}&nbsp;

Smart猫小萌

AngularJS提供$http控制,可以作为一项服务从服务器读取数据。服务器可以使一个数据库调用来获取记录。 AngularJS需要JSON格式的数据。一旦数据准备好,$http可以用以下面的方式从服务器得到数据。function studentController($scope,$http) {var url="data.txt";$http.get(url).success( function(response) {$scope.students = response;});
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

AngularJS