dongwei4444 2016-04-15 01:07
浏览 40
已采纳

获取最后一页http请求golang

I am doing an http requestlike this one:

resp, err := http.Get("http://example.com/")

Then I am getting the header link:

link := resp.Header.Get("link")

Which gives me a result like this:

<page=3>; rel="next",<page=1>; rel="prev";<page=5>; rel="last"

Question

How can I parse this into a more legible way? I specifically trying to get the last page but firstand nextpage should useful as well.

I tried with Splitsand Regular expressionswithout success.

  • 写回答

2条回答 默认 最新

  • 普通网友 2016-04-15 08:43
    关注

    Are you sure that is the format of the output? It looks like one of ; should be a ,. A single Link http header with multiple values, should be of the format (notice the comma after "prev")

    <page=3>; rel="next",<page=1>; rel="prev",<page=5>; rel="last"
    

    The order should be split on , for each link. Split each link on ; for values or key-value pairs, and then if they value matches <(.*=.*)>, discard the angle brackets and use the remaining key and value.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看