我正在开发一个离子2应用程序,其中一个表格内有一个可编辑的表格,其中有一个提交按钮来提交数据。我们可以使用表格的一个提交按钮和离子2中的表格数据提交数据。
答案 0 :(得分:0)
编辑: 这只是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
}