mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 18:08:03 +03:00 
			
		
		
		
	Adding a class attribute into JSONRenderer for ensuring ascii, and using it consistently
This commit is contained in:
		
							parent
							
								
									3f47eb7a77
								
							
						
					
					
						commit
						c69f960066
					
				| 
						 | 
					@ -49,6 +49,7 @@ class JSONRenderer(BaseRenderer):
 | 
				
			||||||
    media_type = 'application/json'
 | 
					    media_type = 'application/json'
 | 
				
			||||||
    format = 'json'
 | 
					    format = 'json'
 | 
				
			||||||
    encoder_class = encoders.JSONEncoder
 | 
					    encoder_class = encoders.JSONEncoder
 | 
				
			||||||
 | 
					    ensure_ascii = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def render(self, data, accepted_media_type=None, renderer_context=None):
 | 
					    def render(self, data, accepted_media_type=None, renderer_context=None):
 | 
				
			||||||
        """
 | 
					        """
 | 
				
			||||||
| 
						 | 
					@ -72,7 +73,7 @@ class JSONRenderer(BaseRenderer):
 | 
				
			||||||
            except (ValueError, TypeError):
 | 
					            except (ValueError, TypeError):
 | 
				
			||||||
                indent = None
 | 
					                indent = None
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return json.dumps(data, cls=self.encoder_class, indent=indent)
 | 
					        return json.dumps(data, cls=self.encoder_class, indent=indent, ensure_ascii=self.ensure_ascii)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class JSONPRenderer(JSONRenderer):
 | 
					class JSONPRenderer(JSONRenderer):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user