mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			27 lines
		
	
	
		
			616 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			616 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| 22. Using properties on models
 | |
| """
 | |
| 
 | |
| from django.db import models
 | |
| 
 | |
| class Person(models.Model):
 | |
|     first_name = models.CharField(maxlength=30)
 | |
|     last_name = models.CharField(maxlength=30)
 | |
| 
 | |
|     def _get_full_name(self):
 | |
|         return "%s %s" % (self.first_name, self.last_name)
 | |
|     full_name = property(_get_full_name)
 | |
| 
 | |
| API_TESTS = """
 | |
| >>> a = Person(first_name='John', last_name='Lennon')
 | |
| >>> a.save()
 | |
| >>> a.full_name
 | |
| 'John Lennon'
 | |
| 
 | |
| # The "full_name" property hasn't provided a "set" method.
 | |
| >>> a.full_name = 'Paul McCartney'
 | |
| Traceback (most recent call last):
 | |
|     ...
 | |
| AttributeError: can't set attribute
 | |
| """
 |