from django.core.management.base import BaseCommand, CommandError
class Command(BaseCommand):
def handle(self, *args, **options):
......
self.handle_noargs()
def handle_noargs(self, **options):
packages_count = Package.objects.all().count()
Package.objects.all().delete()
print >> self.stdout, u'Deleted %d packages' % packages_count
......
我正在为提供的代码编写测试,但是每当我调用 handle_noargs 函数时,我都会收到以下错误:
AttributeError: 'Command' object has no attribute 'stdout'
我正在使用 Django 1.3.1。
>>> import django
>>> django.VERSION
(1, 3, 1, 'final', 0)
关于谷歌搜索答案标准输出是在一些版本之前在 BaseCommand 类中实现的,所以我不知道为什么 django 找不到它。
添加目录(自我):
>>> from webui.packagedb.management.commands.packagedb_clear import Command
>>> dir(Command)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribut
e__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_e
x__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_
_weakref__', 'args', 'can_import_settings', 'create_parser', 'execute', 'get_ver
sion', 'handle', 'handle_noargs', 'help', 'option_list', 'output_transaction', '
print_help', 'requires_model_validation', 'run_from_argv', 'usage', 'validate']