通过json.jumps处理字典数据, 发送给前端 def get_context_data(self, **kwargs): ctx = super(HelpUpdateView, self).get_context_data(**kwargs) ctx['help_json'] = json.dumps(self.object.content_json) return ctx 在前端把json数据转换成string字符串,再在django后端把字符串转换成字典 // ajax发送数据 dat…