Alamofire与localhost连接问题

时间:2016-07-12 19:17:16

标签: node.js mongodb express networking alamofire

我用node.js和express构建了一个REST API,我用mongodb存储我的数据。

当我使用Postman应用程序向我的本地主机地址(http://localhost:8080/)发送不同的HTTP谓词时,一切都运行良好。

虽然,当我使用Alamofire时,由于某种原因我无法连接到我的localhost地址。这是我的快速代码:

func alamofireTest() {
    let url = "http://localhost:8080/"

    Alamofire.request(.GET, url)
    .responseJSON { response in
    debugPrint(response)

    if let JSON = response.result.value {
        print(JSON)
    }
}

编辑:我正在从iPhone模拟器上运行我的应用程序。

任何帮助/建议都会很棒!

1 个答案:

答案 0 :(得分:0)

由于某种原因,本地主机网址存在问题。部署代码时工作。