我对我得到的错误有疑问。我有一个查询,我试图基于我的项目的Synapse Api发送。我目前正在尝试发送请求taht使用API创建新用户。每次我尝试发送请求时,都会收到一条消息,指出User对象没有创建。这是错误。
AttributeError at /setup_profile/
type object 'User' has no attribute 'create'
Request Method: POST
Request URL: http://127.0.0.1:8000/setup_profile/
Django Version: 1.8.6
Exception Type: AttributeError
Exception Value:
type object 'User' has no attribute 'create'
Exception Location: C:\Users\OmarJandali\Desktop\opentab\opentab\tab\views.py in createUserSynapse, line 1104
以下是我现有的代码,它将创建创建新用户的请求。
def createUserSynapse(request):
args = {
'email': 'hello@synapsepay.com',
'phone_number': '555-555-5555',
'legal_name': 'Hello McHello',
'note': ':)', # optional
'supp_id': '123abc', # optional
'is_business': True,
'cip_tag': 1
}
user = User.create(client, **args)
print(user)
现在我知道使用普通的查询集,我有以下格式的对象
User.objects.create(client, **args)
但是当我这样做时,我收到一个错误
正在传递两个参数,需要1个,所以我认为传递了很多变量......我不确定错误来自哪里......
这是我使用User.objects.create(client,** args)时得到的错误
TypeError at /setup_profile/
create() takes 1 positional argument but 2 were given
Request Method: POST
Request URL: http://127.0.0.1:8000/setup_profile/
Django Version: 1.8.6
Exception Type: TypeError
Exception Value:
create() takes 1 positional argument but 2 were given
Exception Location: C:\Users\OmarJandali\AppData\Local\Programs\Python\Python36\lib\site-packages\django\db\models\manager.py in manager_method, line 127
已更新
客户端需要传递给api调用,它包含以下内容:
import os
from synapse_pay_rest import Client
args = {
'client_id': 'client_id_...6YiBl',
'client_secret': 'client_secret_...kC3IF',
'fingerprint': '...dd48b',
'ip_address': '127.0.0.1',
'development_mode':True,
'logging':False
}
client = Client(**args)
此外,这里是api开发人员创建的api示例的github链接。
https://github.com/synapsepay/SynapsePayRest-Python
必须通过api调用传递客户端
答案 0 :(得分:3)
Create方法只有关键字参数。将代码重写为:
User.objects.create(client=client, **args)
<强>更新强>
我刚才发现你正在使用第三方软件包。因此,您需要像from synapse_pay_rest import User as SynapseUser
一样导入User类,并在代码中使用SynapseUser:SynapseUser.create(clients, **argss)