我正在尝试连接到这个组织githubtraining
这是我的代码views.py
:
def home(request):
global org
email=request.GET['email']
password=request.GET['password']
g = Github("user", "paswword")
org = g.get_organization('githubtraining')
list_rep= org.get_repos()
context = {
'list_rep': list_rep,
'org':org
}
return render(request, 'Github/repo.html',context)
但是每次我尝试渲染视图时都会出现这个错误:
UnicodeEncodeError at /auth/
'ascii' codec can't encode character '\u200b' in position 24: ordinal not in range(128)
这是因为我的电话有问题吗?
或者那里还有别的东西?