第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 TextInput 過(guò)濾器限制兩個(gè)數(shù)字之間的輸入值

使用 TextInput 過(guò)濾器限制兩個(gè)數(shù)字之間的輸入值

慕碼人2483693 2022-12-20 16:31:00
我需要一個(gè)TextInput filter和minimum (1)一個(gè)maximum (100)值。過(guò)濾器應(yīng)該允許integer only+ I want to avoid: 'ValueError: could not convert string to float or int:'。所以我的目標(biāo)是: TextInput 只讓數(shù)字在 1-100 之間。我嘗試了一些解決方案,比如簡(jiǎn)單的 if-else 代碼,但它不夠優(yōu)雅、不夠簡(jiǎn)單,而且我的代碼也變得有點(diǎn)混亂。這就是為什么我認(rèn)為我需要一個(gè) TextInput 過(guò)濾器。我知道官方網(wǎng)站上有示例,我嘗試創(chuàng)建一個(gè)過(guò)濾器,但似乎我的知識(shí)還不夠(還)。你能幫我解決這個(gè)問(wèn)題嗎?我創(chuàng)建了一個(gè)簡(jiǎn)單的例子:我的檔案.pyfrom kivy.app import Appfrom kivy.uix.boxlayout import BoxLayoutfrom kivy.uix.textinput import TextInputfrom kivy.properties import ObjectPropertyclass NewTextInput(TextInput):    input_filter = ObjectProperty('int', allownone=True)    max_characters = 2    def insert_text(self, substring, from_undo=False):        if len(self.text) > self.max_characters and self.max_characters > 0:            substring = ""        TextInput.insert_text(self, substring, from_undo)    #This is where I need the filter.    #min_value = 1    #max_value = 100    #def insert_text(self, substring, from_undo=False):       #...class MyApp(App):    def build(self):        passif __name__ == '__main__':    MyApp().run()我的檔案.kvBoxLayout:    orientation: 'horizontal'    Label:        text: "Sample"    NewTextInput:
查看完整描述

1 回答

?
偶然的你

TA貢獻(xiàn)1841條經(jīng)驗(yàn) 獲得超3個(gè)贊

試試這個(gè):


class MyTextInput(TextInput):

    def __init__(self, **kwargs):

        super(MyTextInput, self).__init__(**kwargs)

        self.input_filter = 'int'


    def insert_text(self, substring, from_undo=False):

        if substring in string.digits:

            cc, cr = self.cursor

            text = self._lines[cr]

            new_text = text[:cc] + substring + text[cc:]

            if int(new_text) > 100:

                return

        super(MyTextInput, self).insert_text(substring, from_undo=from_undo)


查看完整回答
反對(duì) 回復(fù) 2022-12-20
  • 1 回答
  • 0 關(guān)注
  • 136 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)