django报错:TypeError: BasicAuthentication() takes no arguments
时间: 2023-12-30 15:05:02 浏览: 141
这个错误是因为在使用Django BasicAuthentication时,你在实例化BasicAuthentication时传入了参数,但是BasicAuthentication并不需要参数。可以尝试去掉参数,或者检查一下参数的正确性。
例如,在settings.py中配置:
```python
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.BasicAuthentication',
]
}
```
这里的BasicAuthentication就不需要传入任何参数,否则就会出现上述错误。
相关问题
django报错:TypeError: BasicAuthentication() takes no arguments,应该是哪里的错误
这个错误通常是由于在使用Django REST framework时,对BasicAuthentication进行了错误的实例化导致的。
在Django REST framework中,BasicAuthentication是一个认证类,在使用时一般通过在settings.py中配置DEFAULT_AUTHENTICATION_CLASSES来启用。如果你在代码中手动实例化BasicAuthentication并传入参数,就会出现这个错误。
比如,以下代码就会出现该错误:
```python
from rest_framework.authentication import BasicAuthentication
basic_auth = BasicAuthentication('username', 'password')
```
正确的使用方式是在settings.py中进行配置:
```python
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.BasicAuthentication',
]
}
```
这样就会自动使用BasicAuthentication进行认证,而不需要手动实例化。
報錯:TypeError: BasicAuthentication() takes no arguments,我用的python3.9
这个错误通常是因为`BasicAuthentication`类的构造函数定义了参数,而在实例化时没有传递参数导致的。从`django-rest-framework` 3.13版本开始,`BasicAuthentication`类的构造函数不再接受任何参数,因此如果你的代码中使用了参数,就会报出这个错误。
解决方法是将`BasicAuthentication`实例化时的参数移除。如果你在自定义`BasicAuthentication`类时使用了参数,可以将其去除。例如,如果你的代码类似于这样:
```python
class MyBasicAuthentication(BasicAuthentication):
def __init__(self, realm):
self.realm = realm
super().__init__()
def authenticate(self, request):
# ...
```
你需要将`__init__`方法中的`realm`参数去除,改为如下形式:
```python
class MyBasicAuthentication(BasicAuthentication):
def __init__(self):
super().__init__()
def authenticate(self, request):
# ...
```
如果你在其他地方使用了`BasicAuthentication`的实例化参数,也需要将其去除。
阅读全文