gpt4 book ai didi

python - KIVY语言: multiple commands in a single line

转载 作者:行者123 更新时间:2023-11-30 22:52:32 25 4
gpt4 key购买 nike

我必须做:

TextInput:
on_text: something ; something_else

如何执行此操作而不出现 kv 语言错误?

最佳答案

您可以逐行添加更多 on_text 绑定(bind):

TextInput:
on_text: something
on_text: something_else

但我更喜欢绑定(bind)自定义函数调用,因为我不确定执行顺序始终与上面的示例相同。像这样的事情:

MyTextInput:
on_text: self.custom_function()

在Python中:

class MyTextInput(TextInput):
def custom_function(self):
something()
something_else()

关于python - KIVY语言: multiple commands in a single line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38520218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com