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