• <bdo id='X9lit'></bdo><ul id='X9lit'></ul>

      <small id='X9lit'></small><noframes id='X9lit'>

    1. <tfoot id='X9lit'></tfoot>

      1. <i id='X9lit'><tr id='X9lit'><dt id='X9lit'><q id='X9lit'><span id='X9lit'><b id='X9lit'><form id='X9lit'><ins id='X9lit'></ins><ul id='X9lit'></ul><sub id='X9lit'></sub></form><legend id='X9lit'></legend><bdo id='X9lit'><pre id='X9lit'><center id='X9lit'></center></pre></bdo></b><th id='X9lit'></th></span></q></dt></tr></i><div id='X9lit'><tfoot id='X9lit'></tfoot><dl id='X9lit'><fieldset id='X9lit'></fieldset></dl></div>

        <legend id='X9lit'><style id='X9lit'><dir id='X9lit'><q id='X9lit'></q></dir></style></legend>
      2. 将文本输入保存到 kivy 应用程序中的变量

        Save text input to a variable in a kivy app(将文本输入保存到 kivy 应用程序中的变量)
      3. <tfoot id='u8uQz'></tfoot>

        <small id='u8uQz'></small><noframes id='u8uQz'>

        <legend id='u8uQz'><style id='u8uQz'><dir id='u8uQz'><q id='u8uQz'></q></dir></style></legend>
                <tbody id='u8uQz'></tbody>
                <bdo id='u8uQz'></bdo><ul id='u8uQz'></ul>
                <i id='u8uQz'><tr id='u8uQz'><dt id='u8uQz'><q id='u8uQz'><span id='u8uQz'><b id='u8uQz'><form id='u8uQz'><ins id='u8uQz'></ins><ul id='u8uQz'></ul><sub id='u8uQz'></sub></form><legend id='u8uQz'></legend><bdo id='u8uQz'><pre id='u8uQz'><center id='u8uQz'></center></pre></bdo></b><th id='u8uQz'></th></span></q></dt></tr></i><div id='u8uQz'><tfoot id='u8uQz'></tfoot><dl id='u8uQz'><fieldset id='u8uQz'></fieldset></dl></div>
                  本文介绍了将文本输入保存到 kivy 应用程序中的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在制作一个基于文本的游戏,游戏会在某个时刻要求用户输入他们的姓氏.我已经找到了一种将名称保存到文件中并从文件中加载名称的方法,但我不知道如何将已输入的文本保存到变量中.我已经尝试了我在网上看到的各种方法,但到目前为止没有一个对我有用.我有问题的代码部分目前看起来像这样:(忽略像customwidget这样的奇怪名称,我曾经尝试过一次,然后就这样离开了:P)

                  I am making a text based game, and there is a point at which the game asks the user to input their surname. I have worked out a way to save the name to a file, and load the name from the file, but I do not know how to save the text that has been input into a variable. I have tried various methods i have seen online, but none have worked for me so far. The section of my code in question currently looks like this: (ignore the odd names like customwidget, i was experimenting once and left them like that :P)

                  testing.py 文件:

                  import kivy
                  kivy.require("1.9.0")
                  from kivy.properties import NumericProperty
                  
                  from kivy.app import App
                  from kivy.uix.widget import Widget
                  from kivy.properties import ObjectProperty
                  
                  class CustomWidget(Widget):
                      last_name_text_input = ObjectProperty()
                      ego = NumericProperty(0)
                      surname = ''
                  
                      def submit_surname(self):
                          surname = self.last_name_text_input.text
                  
                  class CustomWidgetApp(App):
                      def build(self):
                          return CustomWidget()
                  
                  customWidget = CustomWidgetApp()
                  customWidget.run()
                  

                  customwidget.kv 文件:

                  <CustomWidget>:
                      last_name_text_input: last_name
                      Label:
                          text: "Last Name:"
                          pos: 655,400
                          size: 100, 30
                      TextInput:
                          id: last_name
                          pos: 760,400
                          size: 100, 30
                      Button:
                          text: "Save Name"
                          pos: 870,400
                          size: 100, 30
                          on_release: root.submit_surname()
                  

                  这会创建一个像这样的屏幕:

                  This creates a screen like this:

                  但是,每当我将姓氏值保存到文件中或尝试打印姓氏时,它什么都没有出现.如果我能在这个问题上得到一些帮助,将不胜感激.提前感谢您的帮助:)

                  However, whenever I save the surname value to the file or try to print surname, it comes up with nothing. It would be greatly appreciated if I could recieve some help with this issue. Thanks in advance for any help :)

                  推荐答案

                  你必须将 surname 声明为 StringProperty.请参考以下示例.

                  You have to declare surname as StringProperty. Please refer to the example below.

                      from kivy.app import App
                      from kivy.uix.widget import Widget
                      from kivy.properties import ObjectProperty, NumericProperty, StringProperty
                  
                  
                      class CustomWidget(Widget):
                          last_name_text_input = ObjectProperty()
                          ego = NumericProperty(0)
                          surname = StringProperty('')
                  
                          def submit_surname(self):
                              self.surname = self.last_name_text_input.text
                              print("Assign surname: {}".format(self.surname))
                              self.save()
                              self.surname = ''
                              print("Reset surname: {}".format(self.surname))
                              self.load()
                              print("Loaded surname: {}".format(self.surname))
                  
                          def save(self):
                              with open("surname.txt", "w") as fobj:
                                  fobj.write(str(self.surname))
                  
                          def load(self):
                              with open("surname.txt") as fobj:
                                  for surname in fobj:
                                      self.surname = surname.rstrip()
                  
                  
                      class CustomWidgetApp(App):
                          def build(self):
                              return CustomWidget()
                  
                  if __name__ == "__main__":
                      CustomWidgetApp().run()
                  

                  customwidget.kv

                  #:kivy 1.10.0
                  
                  <CustomWidget>:
                      last_name_text_input: last_name
                      Label:
                          text: "Last Name:"
                          pos: 655,400
                          size: 100, 30
                      TextInput:
                          id: last_name
                          pos: 760,400
                          size: 100, 30
                      Button:
                          text: "Save Name"
                          pos: 870,400
                          size: 100, 30
                          on_release: root.submit_surname()
                  

                  输出

                  这篇关于将文本输入保存到 kivy 应用程序中的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                  • <i id='qDrtL'><tr id='qDrtL'><dt id='qDrtL'><q id='qDrtL'><span id='qDrtL'><b id='qDrtL'><form id='qDrtL'><ins id='qDrtL'></ins><ul id='qDrtL'></ul><sub id='qDrtL'></sub></form><legend id='qDrtL'></legend><bdo id='qDrtL'><pre id='qDrtL'><center id='qDrtL'></center></pre></bdo></b><th id='qDrtL'></th></span></q></dt></tr></i><div id='qDrtL'><tfoot id='qDrtL'></tfoot><dl id='qDrtL'><fieldset id='qDrtL'></fieldset></dl></div>

                    <small id='qDrtL'></small><noframes id='qDrtL'>

                      <tfoot id='qDrtL'></tfoot>
                      <legend id='qDrtL'><style id='qDrtL'><dir id='qDrtL'><q id='qDrtL'></q></dir></style></legend>

                          • <bdo id='qDrtL'></bdo><ul id='qDrtL'></ul>
                              <tbody id='qDrtL'></tbody>