示例#1
0
    def to_native(self, data):
        """
        List of dicts of native values <- List of dicts of primitive datatypes.
        """
        if is_html_input(data):
            data = parse_html_list(data)

        return [self.child.validate(item) for item in data]
示例#2
0
 def get_value(self, dictionary):
     # We override the default field access in order to support
     # lists in HTML forms.
     if is_html_input(dictionary):
         return parse_html_list(dictionary, prefix=self.field_name)
     return dictionary.get(self.field_name, empty)