如何从输入类型文本保存 StringListProperty - Appengine Python
我需要使用 Python 将输入类型文本的值保存到 Google Appengine 中的 StringListProperty 属性中。
如果我尝试:
author.books = self.request.get('books')
author.put()
然后我收到“财产簿必须是列表”错误。
我需要它来处理输入中的以下文本(2 或 1 本书,用逗号分隔):
- 《达芬奇密码》、《天使与天使》恶魔
- 华氏451度
感谢您的帮助!
I need to save the value of an input type text into a StringListProperty property in Google Appengine with Python.
If I try:
author.books = self.request.get('books')
author.put()
Then I get a 'Property books must be a list' error.
I need it to work with the following text in the input (2 or 1 books separated by commas):
- The Da Vinci Code, Angels & Demons
- Fahrenheit 451
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
author.books = self.request.get('books').split(', ')
author.books = self.request.get('books').split(', ')