1

我正在尝试连接到这个组织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)

这是因为我的电话有问题吗?

或者那里还有别的东西?

4

1 回答 1

1

你检查过你的模板的编码Github/repo.html吗?

确保文本编辑器的文件设置使用的是 unicode。

于 2018-02-27T08:02:27.833 回答