服务端 Swift - Vapor 篇 (一)

作者: 大朕东 | 来源:发表于2016-10-22 21:55 被阅读3390次

    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:8080

    Congratulation! 恭喜,尝试一下 http://localhost:8080/Helloa/there 和 http://localhost:8080/WWDC17  会有什么结果吧!

    现在你已经知道如何使用Http 的Get 方法取得数据了,下一步我们试一下Post方法,添加以下代码。

    POST方法

    然后我们用Postman第三方软件来测试我们的结果。


    POST 测试

    成功啦哈哈哈!

    尝试写更多Post来练习一下吧!


    ok,学到这里,你已经知道如何通过编写Swift部署本地服务器,但是通常,我们希望将服务器部署在云端。接下来我们使用Heroku 来部署我们的服务器吧。当然,Vapor也支持Ubuntu,Digital Ocean、AWS等等

    Heroku是移动手机云平台,先注册一个账号吧,然后安装部署环境。

    配置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就能更新我们的服务器还有更多好玩的功能。如果你喜欢这篇文章,希望给个小红心哈!


    Write the code , change the world !

    相关文章

      网友评论

      • 出门右转掘金见:你好,现在swift更新到3.1了,能不能把文章跟新下呢,我走第一步就约到swift3.1 is required...
        大朕东:你可以看关于我写的Vapor 2.0介绍那篇文章
        出门右转掘金见:@大朕东 感谢感谢,学习:smiley:
        大朕东:好的呢
      • 上个月:打开部署成功后给的链接 提示这个:
        An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.
        大朕东:@AZ_泽泽泽 为什么会?
      • hello_coco:提示swift不能部署到heroku上。No default language could be detected for this app。输入$ heroku buildpacks:set heroku/swift
        返回 ▸ Invalid buildpack `heroku/swift`,不支持swift语言?
        hello_coco:@大朕东 您好!执行git push heroku master后,提示上传成功。然后
        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'
        大朕东:@hello_coco 你好,抱歉好久没回。再Heroku上是没有说支持Swift语言但是你还是可以部署到那里的。想问你在哪一步操作遇上这个问题呢?
      • 小菜99:已关注,已红心, 期待你的:下一篇,我将写如何利用GitHub 来 部署我们的服务器,可以在每次你对代码进行修改后,只要一次push 到github就能更新我们的服务器还有更多好玩的功能。如果你喜欢这篇文章,希望给个小红心哈!
      • Eil_tea:Swift作为服务器,配套的数据库用什么?heroku 提供环境吗?还是自己搭建?
        大朕东:@Eil_tea heroku提供数据库的
      • Lucifron:搞iOS的用swift开发服务器真是惬意,以后自己先写接口调试了哈哈。类似Vapor的还有一个叫’perfect'看起来也很强的样子,打算最近了解下。
      • 编号x71291:为啥 每次git push heroku master 只修改了一个文件 却push了很多.c的文件 这是为啥
        大朕东:@CatLoveDog 嗯嗯,还要完成编译
        编号x71291:@大朕东 哦😯 每次提交都要好久啊 明明只改了main文件……
        大朕东:@CatLoveDog 因为Vapor底层是用c语言写的
      • 8377456b219b:LZ啊 为什么我 curl -sL toolbox.vapor.sh | bash 一直是error的啊 每次error还不一样.....

        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.
        8377456b219b:@大朕东 没有...后来我就用perfect了 - -
        大朕东:@钗头疯 😨
        大朕东:@钗头疯 现在解决了吗
      • com3611923:写的不错,期待下一篇
      • kagenZhao:代码更新以后怎么 更新heroku 用 vapor heroku push 会报错 Error: spawnProcess
        大朕东:@大朕东 git push heroku master
        大朕东:@大朕东 git commit -am "make it better"
        大朕东:@kagenZhao git add.
      • 吉创研: :joy: 我们是时候开始编写服务端框架了 :smile:
        大朕东: @图灵爸爸 其实我觉得有点早,我希望Swift能做爬虫采集数据,更全栈
      • SevenJustin:蛮阔以哦, 支持一下
      • 7215d5fbae03:阔以的, mark
      • 显生宙:Mark mark
      • 若非长得丑怎会做逗比:我部署在服务器上 使用 nohup .build/debug/App &
        后台运行一段时间后 自动就停止了
        大朕东:@若非长得丑怎会做逗比 尝试部署到heroku上
      • LeeCen:期待。。。
        大朕东: @Lee_Cen 😃马上更新
      • c50765594d45:牛逼
        大朕东:@西方失败 :anguished:
      • b5024c53e349:期待更新,加油
        大朕东:@godkang 大二。。
        b5024c53e349:@scauos 还在上学啊
        大朕东: @godkang 学校课多🙄稍等哈,很快

      本文标题:服务端 Swift - Vapor 篇 (一)

      本文链接:https://www.haomeiwen.com/subject/fefusttx.html