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 VB6.0中PICTUREBOX加载本地图片无法显示
    • ¥100 关于游戏app session获取的问题
    • ¥15 MYSQL数据库建表
    • ¥15 爬虫程序爬取TTGChina网站文章代码
    • ¥35 由于系统缓冲区空间不足或队列已满,不能执行套接字上的操作。
    • ¥15 如何用下图方法在AMESim中搭建离心泵模型
    • ¥15 C#连接服务器,请求时报Ssl/Tsl未能建立安全通道
    • ¥15 xcode15build的c++ dylib在10.15上不兼容
    • ¥15 CPLD如何实现在线逻辑分析
    • ¥15 控制面板卸载无权限!!