user_image
By  廿三坊主    On   2018年11月10日 19:50

>>> c = q.choice_set.filter(choice_text__startswith='Just hacking') FieldError: Unsupported lookup 'startwith' for CharField or join on the field not permitted. ### ### 发现使用Choice.objects.filter可以 ### c = Choice.objects.filter(choice_text__startswith='Just hacking')