我试图在React中创建一个带有参数的简单axios get请求,以与Go一起使用。不管我做什么,都要不断获取GET URL path not found(404)错误。 这是JS
requirements.txt
这是我的server.go文件的相关部分。我正在使用大猩猩/ mux来识别参数
import React, {Component} from 'react'
import axios from "axios"
class ShowLoc extends Component {
constructor(props){
super(props)
}
componentDidMount(){
const {id} = this.props.match.params
axios.get(`/loc/${id}`)
}
render() {
return(
<div>
Specific Location
</div>
)
}
}
export default ShowLoc
由于从未找到我的get请求,因此我从未打过getLoc函数。我应该如何从我的get请求中获取参数?
答案 0 :(得分:0)
您尚未使用多路复用器路由器。自从您将nil
传递到ListenAndServe
以来,它正在使用默认路由器,该路由器附加了所有其他处理程序。相反,请向您的多路复用器路由器注册所有处理程序,然后将其作为第二个参数传递给ListenAndServe
。
func main() {
r := mux.NewRouter()
fs := http.FileServer(http.Dir("static"))
r.Handle("/", fs)
bs := http.FileServer(http.Dir("public"))
r.Handle("/public/", http.StripPrefix("/public/", bs))
r.HandleFunc("/show", show)
r.HandleFunc("/db", getDB)
r.HandleFunc("/loc/{id}", getLoc)
log.Println("Listening 3000")
if err := http.ListenAndServe(":3000", r); err != nil {
panic(err)
}
}
func getLoc(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
http.Error(w, http.StatusText(405), http.StatusMethodNotAllowed)
return
}
id := r
fmt.Println("URL")
fmt.Println(id)
}