1

这是我的代码:

import sae
import socket, sys
host = ''
port = 5005
def app(environ, start_response):
    status = '200 OK'
    response_headers = [('Content-type', 'text/plain')]
    start_response(status, response_headers)
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.bind((host, port))
    s.listen(2)
    while 1:
        client, addr = s.accept();
        print("Got connection from ", addr);
        while 1:
            print("the word you want to send:")
            buf = sys.stdin.readline().strip()
            if not buf:
                break
            client.send(bytes(buf, 'UTF-8'))
            data = client.recv(1024);
            if data:
                print(data)
    return ['Hello, world!']

application = sae.create_wsgi_app(app)

但我收到一个属性错误,上面写着:

Traceback (most recent call last):
  File "/usr/local/sae/python/lib/python2.7/site-packages/sae/__init__.py", line 18, in
   new_app
    return app(environ, start_response)
  File "/data1/www/htdocs/850/love2note/1/index.wsgi", line 11, in app
    s.bind((host, port))
AttributeError: '_socketobject' object has no attribute 'bind'

我真的不明白我需要做什么来解决这个问题。如果有人可以帮助我,我将不胜感激。

4

1 回答 1

0

import sae你是说新浪应用引擎

如果为真:SAE 不允许绑定。API

于 2014-10-18T15:42:34.580 回答