def _parse_prefilled(self, query_params):
result = {}
for param in query_params:
if '__' not in param:
continue
step, field = param.split('__')
if step not in result:
result[step] = QueryDict(mutable=True)
result[step][field] = query_params[param]
return result
评论列表
文章目录