如何使用喷雾发送http请求

时间:2015-01-14 21:08:13

标签: scala spray

我刚刚在spray.io github项目下构建,我的默认页面正常工作,而且我已经能够添加更多带有html的页面。但是,我希望能够以某种方式使页面交互(从彼此获取信息)。现在,我想至少返回页面上发布的代码,我认为这是第一步做的最简单的事情。

这是我的代码:

trait MyService extends HttpService {
val Route = 
path("one") {
  get {
    respondWithMediaType(`text/html`) { // XML is marshalled to `text/xml` by default, so we simply override here
      complete {
        <html>
          <body>
            SOME HTML
          </body>
        </html>
         }
        }
      }
    } ~ 
path("test"){
        get {
           //return data from path /one
        }
    }
}

我将在测试的get方法中加入什么,以便它从&#34; one&#34;中获取数据。页?

谢谢!

0 个答案:

没有答案