如何从所有 ImageSpec 生成选择列表
我想为继承自 imagekit.specs.ImageSpec
的所有规格生成一个选择列表。
这个想法是允许管理界面的用户选择要添加到图片中的 ImageSpec。
即:
class Display(ImageSpec):
pre_cache = True
increment_count = True
processors = [ResizeDisplay,]
class SingleDisplay(ImageSpec):
pre_cache = True
increment_count = True
processors = [SingleDisplayResize]
class Reflection(ImageSpec):
increment_count = True
processors = [ResizeDisplay, ReflectionProcessor]
class SingleDisplayReflection(ImageSpec):
increment_count = True
processors = [SingleDisplayResize, ReflectionProcessor]
结果出现下拉列表“显示、单显示、反射、单显示反射”
I want to generate a choicelist for all specs that inherit from imagekit.specs.ImageSpec
.
The idea is to allow users of the admin interface to select an ImageSpec to add to a picture.
i.e:
class Display(ImageSpec):
pre_cache = True
increment_count = True
processors = [ResizeDisplay,]
class SingleDisplay(ImageSpec):
pre_cache = True
increment_count = True
processors = [SingleDisplayResize]
class Reflection(ImageSpec):
increment_count = True
processors = [ResizeDisplay, ReflectionProcessor]
class SingleDisplayReflection(ImageSpec):
increment_count = True
processors = [SingleDisplayResize, ReflectionProcessor]
results in a drop-down list "Display, Singledisplay, Reflection, Singledisplayreflection"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,类似下面的内容将为您提供文件中定义的所有 ImageSpec 子类的列表:
然后您可以从
subclasses
中每个类的__name__
属性生成选择列表代码> 列表。Well, something like the following will get you a list of all the ImageSpec subclasses defined in the file:
You could then generate the choices list from the
__name__
attribute of each class in thesubclasses
list.