我有一個函數friend_exists
這樣的:函數需要2個參數時,應只有一個
def friend_exists(request, pid):
result = False
try:
user = Friend.objects.get(pid=pid)
except Friend.DoesNotExist:
pass
if user:
result = True
return result
我打電話它從我的其他功能像這樣:
exists = friend_exists(form.cleaned_data['pid'])
其中pid = u'12345678'
。爲什麼我得到:
Exception Type: TypeError at /user/register/
Exception Value: friend_exists() takes exactly 2 arguments (1 given)
任何想法?
請修復帖子標題錯字funciotn。 – sivabudh 2010-07-07 21:57:32