求教如果想把一个noneType的类型转成string型的可行吗?
如题,最近做到trac配置。碰到个 req.get_header('Remote-User') 得到的事noneType类型,我想得到的却是string类型。求解
报错:
return req.get_header('Remote-User')+''
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
[解决办法]
return str(req.get_header('Remote-User'))+''