dousui7410 2019-05-06 06:53
浏览 331

正则表达式在Golang HandleFunc函数中不起作用

I am trying to redirect the URL based on a pattern in Go. If my URL is containing "clientApi" then I am sending it to clientApiPoint func otherwise I am sending it to redirectApiPoint func. My handleRequest func is

func handleRequest()  {
    r := mux.NewRouter()
    r.HandleFunc("/", homePage)
    r.HandleFunc("/clientApi", clientApiPoint)
    r.HandleFunc("/{^((?!clientApi).)*$}", redirectApiPoint)
    http.Handle("/", r)
    log.Fatal(http.ListenAndServe(":8081", nil))
} 

{^((?!clientApi).)*$} regex is working fine if my url is something like

localhost:8081/somerandonurl  (sending it to redirectApiPoint func)

but if there one or more "/" in the url, regex is not redirecting it to redirectApiPoint func.

localhost:8081/somerandonurl/somethingdifferent    (not sending it to redirectApiPoint. 404 page not found message)
  • 写回答

1条回答 默认 最新

  • douan6815 2019-05-06 07:02
    关注

    your Regex work on "localhost:8081/somerandonurl" because of the first "/" so it matched.

    you need somthing like "/(.*$)" but this will match any /blala/blala/...

    you can test your regex from here: Regex

    评论

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP