【发布时间】:2018-04-11 00:45:33
【问题描述】:
我有一个带有示例序列化程序的扩展用户(配置文件是扩展用户,而不是抽象用户)
{
"id": 3,
"url": "http://localhost:8000/api/v1/users/demo/",
"username": "demo",
"first_name": "First",
"last_name": "Demo",
"profile": {
"gender": null,
"location": "Sa Pa",
"date_of_birth": null,
"job_title": null,
"phone_number": null,
"fax_number": "",
"website": "",
"intro": "",
"bio": "",
"interested_in": null,
"languages": null,
"quotes": null,
"nickname": null
}
}
如何使用以上所有字段自定义有效负载并使用axios 获取它?
现在它只是获取有效载荷:
authUser:Object
email:"test@gmail.com"
exp:1509183691
user_id:1
username:"First Demo"
token:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImxlY29uZ3RvYW4iLCJ1c2VyX2lkIjoxLCJlbWFpbCI6ImRyYWZ0bGlnb25ncXVhbjdAZ21haWwuY29tIiwiZXhwIjoxNTA5MTgzNjkxfQ.KSEp-7g-SGDbqfspedNwkT1rABFi0UQ45yKDJDTX2zA"
我点击了这个链接:#145 但不起作用 请帮帮我!
【问题讨论】:
标签: python django django-rest-framework django-rest-framework-jwt