可以使用Math.floor向下取整来获得整数部分,具体可参考以下demo:@Entry @Component struct Index { @State num1: string = '0' @State num2: string = '0' @State res: string = '' build() { Column() { Row(){ TextInput() .type(InputType.Number) .width(100) .onChange((value: string) => { this.num1 = value }) Text('/') TextInput() .type(InputType.Number) .width(100) .onChange((value: string) => { this.num2 = value }) Text("=") .fontSize(20) .onClick(()=> { this.res = Math.floor(parseInt(this.num1) / parseInt(this.num2)).toString() }) Text(this.res) } } } }
可以使用Math.floor向下取整来获得整数部分,具体可参考以下demo: