mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
35 lines
802 B
Python
35 lines
802 B
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: common.py
|
||
@date:2024/1/11 18:44
|
||
@desc:
|
||
"""
|
||
from rest_framework import serializers
|
||
|
||
|
||
class InstanceField(serializers.Field):
|
||
def __init__(self, model_type, **kwargs):
|
||
self.model_type = model_type
|
||
super().__init__(**kwargs)
|
||
|
||
def to_internal_value(self, data):
|
||
if not isinstance(data, self.model_type):
|
||
self.fail('message类型错误', value=data)
|
||
return data
|
||
|
||
def to_representation(self, value):
|
||
return value
|
||
|
||
|
||
class FunctionField(serializers.Field):
|
||
|
||
def to_internal_value(self, data):
|
||
if not callable(data):
|
||
self.fail('不是一个函數', value=data)
|
||
return data
|
||
|
||
def to_representation(self, value):
|
||
return value
|