AttributeError'str'对象没有属性'read'

时间:2019-06-20 10:10:28

标签: php python django

我想将现有的PHP应用程序与新的Django框架集成。 我正在使用django-php-bridge https://github.com/winhamwr/django-php-bridge

我想要的是通过使用现有的PHP身份验证方法在django应用中进行身份验证。我能够通过PHP生成会话密钥,并希望使用网桥将其放在Django会话表中。但是我遇到了错误。 您可以提出一个更好的替代方法吗?

 def _unserialize():
        type_ = fp.read(1).lower()
        if type_ == b'n':
            _expect(b';')
            return None
        if type_ in b'idb':
            _expect(b':')
            data = _read_until(b';')
            if type_ == b'i':
                return int(data)
            if type_ == b'd':
                return float(data)
            return int(data) != 0
        if type_ == b's':
            _expect(b':')
            length = int(_read_until(b':'))
            _expect(b'"')
            data = fp.read(length)
            _expect(b'"')
            if decode_strings:

Request Method: | GET
-- | --
http://localhost:8000/
2.2.2
AttributeError
'str' object has no attribute 'read'
C:\xampp\htdocs\test\dbs\env\lib\site-packages\phpserialize.py in _unserialize, line 473
C:\xampp\htdocs\test\dbs\env\Scripts\python.exe
3.7.3
['C:\\xampp\\htdocs\\test\\dbs',  'C:\\xampp\\htdocs\\test\\dbs\\env\\Scripts\\python37.zip',  'C:\\xampp\\htdocs\\test\\dbs\\env\\DLLs',  'C:\\xampp\\htdocs\\test\\dbs\\env\\lib',  'C:\\xampp\\htdocs\\test\\dbs\\env\\Scripts',  'c:\\users\\arjun soota\\appdata\\local\\programs\\python\\python37-32\\Lib',  'c:\\users\\arjun soota\\appdata\\local\\programs\\python\\python37-32\\DLLs',  'C:\\xampp\\htdocs\\test\\dbs\\env',  'C:\\xampp\\htdocs\\test\\dbs\\env\\lib\\site-packages']
Thu, 20 Jun 2019 11:46:50 +0530

0 个答案:

没有答案