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
무엇 @을 # $! 여기 가니? 제발 도와주세요.