2009-04-21 38 views
9

tôi có mô hình saudjango ForeignKey chứa truy vấn

class Command(models.Model): 
    server = models.ForeignKey(Server) 
    user_login = models.CharField(max_length=100) 
    user_run = models.CharField(max_length=100) 
    host = models.CharField(max_length=100) 
    ip = models.CharField(max_length=100) 
    session = models.CharField(max_length=100) 
    command = models.TextField() 
    ts = models.DateTimeField(auto_now_add=True) 
    version = models.CharField(max_length=100) 
    type = models.CharField(max_length=100) 

Tôi có truy vấn tìm kiếm sau

cmds = Command.objects.filter(Q(user_login__contains=form.cleaned_data['loguser']), 
           Q(user_run__contains=form.cleaned_data['runuser']), 
           Q(host__contains=form.cleaned_data['loghost']), 
           Q(command__contains=form.cleaned_data['command']), 
           Q(server__contains=form.cleaned_data['host']), 
           Q(session__contains=form.cleaned_data['session'])) \ 
         .order_by('-id')[:100] 

tôi cần phải tìm kiếm theo chuỗi sau đây cho server.host

Nếu tôi hãy thử thêm những điều sau đây tôi gặp lỗi

Q(server__contains=form.cleaned_data['host']), 

Exception Type:  TypeError 
Exception Value:  

Related Field has invalid lookup: contains 

Exception Location:  /usr/lib/python2.5/site-packages/django/db/models/fields/related.py in get_db_prep_lookup, line 156 

form.cleaned_data ['host'] sẽ chứa chuỗi văn bản cho tên máy chủ.

Trả lời

16
server__searchfieldname__contains 

bạn không chỉ định trường nào trong bảng máy chủ sẽ tra cứu.

+0

bạn có thể cung cấp một số liên kết tài liệu cho điều đó không? –

Các vấn đề liên quan