我正在尝试使用ReactJS和Go服务器开发Web应用程序。当我将ReactJS文件与Node.js连接时,该Web应用程序可以工作,但是当我将ReactJS文件与Go服务器连接时,它在输出中显示错误。
输出:
“找不到404页”
main.go:
package main
import (
"encoding/json"
"fmt"
"net/http"
"github.com/gorilla/mux"
)
var items = []*Item{}
// Item representing the todo
type Item struct {
ID string `json:"item_id"`
Name string `json:"item_name"`
}
func main() {
//r := http.NewServeMux()
r := mux.NewRouter()
r.PathPrefix("client/").Handler(http.StripPrefix("client/", http.FileServer(http.Dir(".client/"))))
r.HandleFunc("/api/new-item", addItemHandler)
fmt.Println("Running server on port :3000")
http.ListenAndServe(":3000", r)
}
func addItemHandler(w http.ResponseWriter, r *http.Request) {
item := &Item{}
json.NewDecoder(r.Body).Decode(item)
items = append(items, item)
}
我的文件结构:
appName/main.go
appName/client/src/App.js
我希望网络应用在运行App.js
时加载main.go
我想念什么?