在swift中编码后无法打印数据

时间:2015-04-18 12:03:30

标签: swift

我尝试编码数据时遇到错误。如果我直接打印而不正确编码其打印

致命错误:在解包可选值时意外发现nil

   // get the NSURLRequestSession and get the data
    let task = NSURLSession.sharedSession().dataTaskWithRequest(nsurlReq){
        (data,response,error) in

        // check whether there is no error

        if(error==nil)
        {


           // println("Data \(data) ");
            var encodedData = NSString(data: data, encoding: NSUTF8StringEncoding)!;

            println(encodedData);


        }

    } // 

    // you need to resume the task

    task.resume();

1 个答案:

答案 0 :(得分:1)

我希望你的数据编码无效,这就是你无法打印解析数据的原因。