1

私はCesare Rocchiのチュートリアル「ソケットベースのiPhoneアプリとサーバーを作成する方法」http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server#をやっていますコメント

「class IphoneChat(Protocol)」で「name」という属性を定義する必要がありますか、それとも「twisted.internet.protocol」から継承されたものですか? 継承されている場合、どうすれば正しくアクセスできますか?

サーバー.py:

from twisted.internet.protocol import Factory, Protocol  
from twisted.internet import reactor
class IphoneChat(Protocol):
    def connectionMade(self):
        self.factory.clients.append(self)
        print "clients are", self.factory.clients

    def connectionLost(self, reason):
        self.factory.clients.remove(self) 

    def dataReceived(self, data):
        a = data.split(':')
        print a 
        if len(a) > 1:
            command = a[0]
            content = a[1]

            msg = ""
            if command == "iam":
                self.name = content
                msg = self.name + "has joined"
            elif command == "msg":
                msg = self.name + ": " + content 
                print msg

            for c in self.factory.clients:
                c.message(msg)

    def message(self, message):
        self.transport.write(message + '\n')

factory = Factory()
factory.protocol = IphoneChat
factory.clients = []
reactor.listenTCP(80, factory)
print "Iphone Chat server started"
reactor.run()

端末出力:

Iphone Chat server started
...
--- <exception caught here> ---
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/selectreactor.py", line 150, in _doReadOrWrite
    why = getattr(selectable, method)()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/tcp.py", line 199, in doRead
    rval = self.protocol.dataReceived(data)
  File "server.py", line 30, in dataReceived
    msg = self.name + ": " + content
exceptions.AttributeError: IphoneChat instance has no attribute 'name'

これまでの問題解決手順:

  • 「name」は self.factory.clients リストで管理されているサーバー側であると読みましたが、twisted.internet.protocol のクラス定義を探したところ、「name」のようなものは見つかりませんでしたhttp://twistedmatrix.com/documents /11.0.0/api/twisted.internet.protocol.Protocol.html
  • 私が他の場所で読んだことから、これは単なるインデント エラーである可能性があります。
4

2 に答える 2

0

間違ったテキストを解析している可能性があります。

この記事では、「aim:cesare」と入力してから「msg:hi」と入力するように指示されていますが、プログラムは「aim:」をコマンドとして処理する方法を知りません。そのため、後で "msg:hi" を実行すると、self.name には値がありません。記事の著者のタイプミスのようです。次のコマンドが機能するはずです。

「狙い:チェザーレ」

=> cesare

     has joined

「メッセージ:こんにちは」

=> cesare

   : hi
于 2014-07-12T18:19:15.083 に答える