我正在开发一个离子2应用离子2。
编辑:这只是HTML和TS文件的一个示例,以及如何使用它:
<ion-content padding>
<ion-input type="text" #username></ion-input>
<ion-input type="password" #password></ion-input>
<button ion-button (click)="sendlogin()">Login</button>
</ion-content>
比TS:
import { Component, ViewChild } from '@angular/core';
@Component({
selector: 'page-login',
templateUrl: 'login.html',
})
export class LoginPage {
constructor(your declarations) {
}
@ViewChild('username') uname;
@ViewChild('password') pass;
sendlogin() {
Here goes your request to api with parametars this.uname.value and this.pass.value
}