1. 给函数设置一个文本
def action_checked(self, request): pass action_checked.short_desc = "签到"
# short_desc 给函数设置文本
2. 取出函数的文本内容
text = action_checked.short_desc #取出函数的函数名 name =action_checked.__name__
3. 打印结果
temp = {'name': func.__name__, 'text': func.short_desc} print(temp,'######temp') 结果: {'name': 'action_checked', 'text': '签到'} ######temp