Vapor是开源的服务端Swift框架,可以帮助你用Swift 3 搭载后台。 通过本章的学习,你将会学到如下几个技能:
- 配置好Vapor
- 用Swift写GET,POST方法,并返回JSON格式数据
- 配置本地服务器, 编译运行,然后通过访问 http://localhost:8080 查看json数据
- 在Heroku上部署自己的云服务器 ,可以访问 https://scauos.herokuapp.com 查看json
介绍: 今年的 WWDC 介绍了服务端Swift,看到Session上的介绍,非常感动Swift正向发展成为full-stack language不断努力。Vapor是一个开源的服务端框架,能够让你编写像JS 一样的服务端代码!
While the Swift language makes it easy to write software that is incredibly fast and safe by design, Swift being open source means you can use it on an even broader range of platforms, from mobile devices to the desktop and in the cloud. Come for an overview of available projects at Swift.org and examples of the community in action.
安装:
官方文档 一向是最权威的指南,推荐翻看官方教程。
安装只需三步:(确定已经安装Xcode8)
在Terminal上运行
$ curl -sL check.vapor.sh | bash
$ curl -sL toolbox.vapor.sh | bash
$ vapor --help
新建工程:
$ vapor new HelloVapor
这可能要等待一点时间...(可能是我网络差的原因!)
new project现在我想要在Xcode上打开这个工程,并且可以直接编译运行。先cd 到工程文件中
然后运行,(这要等好长时间!)准备一杯咖啡吧
$ vapor xcode -y
打开Xcode后查看Sources/App/main.swift 去掉除
import Vapor
let drop = Droplet()
drop.run()
之外的所有代码
在 drop.run 这一行代码前加上如下代码
几段返回JSON格式数据的代码选择运行
Debug area查看Debug area
通过访问 http://localhost:8080 或者 0.0.0:8000 可以查看到返回的JSON数据
http://localhosh:8080Congratulation! 恭喜,尝试一下 http://localhost:8080/Helloa/there 和 http://localhost:8080/WWDC17 会有什么结果吧!
现在你已经知道如何使用Http 的Get 方法取得数据了,下一步我们试一下Post方法,添加以下代码。
POST方法然后我们用Postman第三方软件来测试我们的结果。
成功啦哈哈哈!
尝试写更多Post来练习一下吧!
ok,学到这里,你已经知道如何通过编写Swift部署本地服务器,但是通常,我们希望将服务器部署在云端。接下来我们使用Heroku 来部署我们的服务器吧。当然,Vapor也支持Ubuntu,Digital Ocean、AWS等等
Heroku是移动手机云平台,先注册一个账号吧,然后安装部署环境。
配置Heroku很简单只需要下载安装器,安装即可。
然后再terminal上检查是否成功
接下来是登录在terminal上登录Heroku,运行
$ heroku login
并输入账号密码即可。
然后 cd 到工程文件中,运行
$ git init
$ git commit -am "我第一Swift服务器上线啦"
然后部署开始我们的服务器吧!
$ vapor heroku init
成功之后运行一下试试,我的域名是 https://scauos.herokuapp.com/ 运行一下你自定义的
你会看到一段JSON数据Hello,Vapor!
Oh Yesh通过本篇的学习,你已经掌握了如何利用Swift写服务器了,尝试看Vapor的官方文档,探索新功能吧。
下一篇,我将写如何利用GitHub 来 部署我们的服务器,可以在每次你对代码进行修改后,只要一次push 到github就能更新我们的服务器还有更多好玩的功能。如果你喜欢这篇文章,希望给个小红心哈!
网友评论
An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.
返回 ▸ Invalid buildpack `heroku/swift`,不支持swift语言?
Compressing objects: 100% (36/36), done.
Writing objects: 100% (51/51), 42.39 KiB | 0 bytes/s, done.
Total 51 (delta 5), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: ! No default language could be detected for this app.
remote: HINT: This occurs when Heroku cannot detect the buildpack to use for this application automatically.
remote: See https://devcenter.heroku.com/articles/buildpacks
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to coco.
remote:
To https://git.heroku.com/coco.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/coco.git'
error: exit(128): git -C /Users/jery/.vapor-toolbox-temporary/vapor-toolbox/Packages/console.git fetch --tags origin
Installing...
bash: line 22: .build/release/Executable: No such file or directory
Use vapor --help and vapor <command> --help to learn more.
后台运行一段时间后 自动就停止了