mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 09:57:55 +03:00 
			
		
		
		
	Remove outdated note about read_only+default (#6847)
This commit is contained in:
		
							parent
							
								
									0e1c5d3132
								
							
						
					
					
						commit
						bcf196d0ac
					
				| 
						 | 
					@ -152,8 +152,6 @@ If you want the date field to be visible, but not editable by the user, then set
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    published = serializers.DateTimeField(read_only=True, default=timezone.now)
 | 
					    published = serializers.DateTimeField(read_only=True, default=timezone.now)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The field will not be writable to the user, but the default value will still be passed through to the `validated_data`.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#### Using with a hidden date field.
 | 
					#### Using with a hidden date field.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
If you want the date field to be entirely hidden from the user, then use `HiddenField`. This field type does not accept user input, but instead always returns its default value to the `validated_data` in the serializer.
 | 
					If you want the date field to be entirely hidden from the user, then use `HiddenField`. This field type does not accept user input, but instead always returns its default value to the `validated_data` in the serializer.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user