2015-02-06 4 views
1

다음 선언 된 정확한 순서로 호출되는 다음 PubNub 대리자 메서드가 있습니다.SwiftyJSON은 나중에 문제없이 구문 분석 할 JSON 문자열을 구문 분석하지 않습니다.

public func pubnubClient(client: PubNub!, didSubscribeOnChannels channels: NSArray!) { 
    log.info("Subscribed to \(channels.count) channels") 
    PubNub.sendMessage("{\"type\": \"CHAT_MSG\",\"msgId\": \"1233123\",\"text\": \"hello\",\"username\": \"attheodo\",\"uuid\": \"user_1\",\"associatedPlaceId\": 2}", toChannel:pubnubChannels[0]) 
} 

public func pubnubClient(client: PubNub!, subscriptionDidFailWithError error: PNError!){ 
    log.error("Subscribe Error: \(error)") 
} 

// MARK: Messages 
public func pubnubClient(client: PubNub!, willSendMessage message: PNMessage!) { 

    let payload = JSON(message.message) 
    println(payload) 
    println(payload.rawString()) 
    println(_stdlib_getTypeName(payload)) 
    println(payload["type"]) 


} 

public func pubnubClient(client: PubNub!, didReceiveMessage message: PNMessage!) { 

    let payload = JSON(message.message) 
    println(payload) 
    println(payload.rawString()) 
    println(_stdlib_getTypeName(payload)) 
    println(payload["type"]) 

} 

문제는 SwiftyJSON가 제대로 willSendMessage에 의해 반환 된 문자열을 구문 분석되지 않지만, 내 눈에, 그들이 정확히 같은 것을 보이지만 제대로 didReceiveMessage에 의해 반환 된 하나를 구문 분석이다. 그것은 다소 나를 미치게한다.

아래 각각의 콘솔 출력을 확인하십시오 :

// willSendMessage 
{"type": "CHAT_MSG","msgId": "1233123","text": "hello","username":  "attheodo","uuid": "user_1","associatedPlaceId": 2} 

Optional("{\"type\": \"CHAT_MSG\",\"msgId\": \"1233123\",\"text\": \"hello\",\"username\": \"attheodo\",\"uuid\": \"user_1\",\"associatedPlaceId\": 2}") 

_TtV10SwiftyJSON4JSON 

// cannot find payload["type"] 
null 

// didReceiveMessage 
{ 
    "username" : "attheodo", 
    "uuid" : "user_1", 
    "msgId" : "1233123", 
    "associatedPlaceId" : 2, 
    "type" : "CHAT_MSG", 
    "text" : "hello" 
} 

Optional("{\n \"username\" : \"attheodo\",\n \"uuid\" : \"user_1\",\n \"msgId\" : \"1233123\",\n \"associatedPlaceId\" : 2,\n \"type\" : \"CHAT_MSG\",\n \"text\" : \"hello\"\n}") 

_TtV10SwiftyJSON4JSON 

// payload["type"] is ok 
CHAT_MSG 

무엇 @을 # $! 여기 가니? 제발 도와주세요.

답변

0

PubNub 라이브러리는 사전과 같은 객체 유형에 대해 JSON을 자동으로 인코딩/디코딩합니다. 타사 JSON 라이브러리 사용을 제외하고 원시 Obj-c 사전을 사용하십시오.