首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

求教如其想把一个noneType的类型转成string型的可行吗

2013-09-07 
求教如果想把一个noneType的类型转成string型的可行吗?如题,最近做到trac配置。碰到个 req.get_header(Rem

求教如果想把一个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'))+''

热点排行