码迷,mamicode.com
首页 > 其他好文 > 详细

django 类列表实例化

时间:2018-02-07 19:44:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:for   port   log   imp   class   style   span   django   item   

一. 创建类

from rest_framework.views import APIView
class Group(APIView):
    
    def get(self,request):
        pass


class Role(APIView):
    def get(self, request):
        pass

二. 类实例化

v2 = [Role,Group,]
for item in v2:
    item()

三. importlib实例化

v1 = ["view.xxx.path.Role","view.xxx.path.Group",]
for item in v1:
     m = importlib.import_module(view.xxx.path)
     cls = getattr(m,Role)
     cls()

 

django 类列表实例化

标签:for   port   log   imp   class   style   span   django   item   

原文地址:https://www.cnblogs.com/supery007/p/8427294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!