我想用Alamofire做一个简单的get请求,但是没有成功。
SwiftUI.NodeJS
struct Test: View {
var body: some View {
Button(action:{
AF.request(“http://xxx.xxx.x.xxx:3000/”, method: .get).responseString{ response in
print(response)
}
}){
Text("Push Me")
}
}
NodeJS:
app.get('/', (req, res) => {
console.log(chalk.redBright("This route was hit"))
res.send("Connected to server") })
我该怎么做才能用Alamofire做一个简单的get请求?奇怪的是,我可以使用AF上传图片,没有任何问题。
编辑:NodeJS玩了一圈之后,我发现这是SwiftUI的问题,而不是Alamofire的问题。