2016-07-28 56 views

回答

1

看起來像這個例子中提到的get/getAs方法只是fetch方法的方便包裝。請參閱https://github.com/http4s/http4s/blob/a4b52b042338ab35d89d260e0bcb39ccec1f1947/client/src/main/scala/org/http4s/client/Client.scala#L116

使用Request構造函數並將Method.POST作爲method

fetch(Request(Method.POST, uri)) 
+0

我發現了同樣的東西。您可能需要找出使用了Request的哪個實現,以及如何修改主體以追加數據。 – sascha10000

-3
import org.http4s.circe._ 
import org.http4s.dsl._ 
import io.circe.generic.auto._  

case class Name(name: String) 

    implicit val nameDecoder: EntityDecoder[Name] = jsonOf[Name] 

    def routes: PartialFunction[Request, Task[Response]] = { 
    case req @ POST -> Root/"hello" => 
    req.decode[Name] { name => 
    Ok(s"Hello, ${name.name}") 
    } 

希望這有助於。

+0

這不是服務器端代碼嗎?在上面的代碼中,您正在接受POST請求並從請求中讀取一個Name對象,然後用Hello名稱產生一個響應。但我的問題是在客戶端。 –

1

https4s版本:0.14.11

難的部分是如何設置帖子正文。當您深入代碼時,您可能會發現type EntityBody = Process[Task, ByteVector]。但是跆拳道呢?但是,如果您尚未準備好進入scalaz,只需使用​​即可。

object Client extends App { 
    val client = PooledHttp1Client() 
    val httpize = Uri.uri("http://httpize.herokuapp.com") 

    def post() = { 
    val req = Request(method = Method.POST, uri = httpize/"post").withBody("hello") 
    val task = client.expect[String](req) 
    val x = task.unsafePerformSync 
    println(x) 
    } 

    post() 
    client.shutdownNow() 
} 

P.S.我對http4s客戶端有幫助的帖子(只是跳過中文並閱讀scala代碼):http://sadhen.com/blog/2016/11/27/http4s-client-intro.html