duancunsu9209 2018-01-03 07:51
浏览 92
已采纳

如何使用swift发布到php脚本后在IOS中获取php echo响应

I am wondering in the ios app, how to get php echo response after posting to the php script using swift

Now, when i print the response out in the ios app, it shows lots of info, such as status code,header,content type, date. But i want neither of them

All i want is the ios app can return the php echo string <?php echo 'You have successfully registered';?>

SWIFT CODE

    let myUrl = URL(string: "http://www.swiftdeveloperblog.com/http-post-example-script/");

    var request = URLRequest(url:myUrl!)

    request.httpMethod = "POST"// Compose a query string

    let postString = "firstName=James&lastName=Bond";

    request.httpBody = postString.data(using: String.Encoding.utf8);

    let task = URLSession.shared.dataTask(with: request) { (data: Data?, response: URLResponse?, error: Error?) in

        if error != nil
        {
            print("error=\(error)")
            return
        }

        // You can print out response object
        print("response = \(response)")

        //Let's convert response sent from a server side script to a NSDictionary object:
        do {
            let json = try JSONSerialization.jsonObject(with: data!, options: .mutableContainers) as? NSDictionary

            if let parseJSON = json {

                // Now we can access value of First Name by its key
                let firstNameValue = parseJSON["firstName"] as? String
                print("firstNameValue: \(firstNameValue)")
            }
        } catch {
            print(error)
        }
    }
    task.resume()

PHP CODE

<?php echo 'You have successfully registered';?>
  • 写回答

1条回答 默认 最新

  • dpntq48842 2018-01-03 08:10
    关注

    Your PHP code will output:

    You have successfully registered

    Your Swift code just prints the whole response object (which contains alot of information), then your trying to parse the data as a JSON response, which it isn't, so it will fail.

    What you need to do is to access the response data (which will be be output from the PHP code) and covert it to a string

    if let data = data {
        let string = String(data: data, encoding: String.Encoding.utf8)
        print(string) //JSONSerialization
    }
    

    Try putting this in your response handling section just after the error handling and this should show the response you expect.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接