Coder Social home page Coder Social logo

Comments (6)

imroc avatar imroc commented on September 28, 2024

在请求级别设置dump

resp, err := client.R().EnableDump().Get(url)
...
content := resp.Dump()
...

from req.

1992w avatar 1992w commented on September 28, 2024

后续会考虑在client级别加上吗? 在请求级别加我要加的地方太多了

from req.

imroc avatar imroc commented on September 28, 2024

是指每个请求都写到不同文件吗?如果是client级别, 目前就是所有的请求都会写到同一个文件

from req.

1992w avatar 1992w commented on September 28, 2024

是在client级别需要一个类似resp.Dump()的api。我目前在client通过EnableDumpAllTo设置了io.Writer,但是内部每次调用Write方法时传递的并不是完整的报文。我希望每次调用Write方法时都是完整的报文,这样我才好处理日志。

from req.

imroc avatar imroc commented on September 28, 2024

是想单次write调用时写入完整报文是吧, 这个应该实现不了。
你实际可以利用response中间件来实现

	c := req.C().OnAfterResponse(func(client *req.Client, resp *req.Response) error {
    dump := resp.Dump()
    ...
  })

from req.

1992w avatar 1992w commented on September 28, 2024

感谢,忘记中间件这回事了

from req.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.