我有一个在React中运行的简单客户端。我正在尝试使用Axios向我在本地运行的Go服务器发出GET请求。 React代码在端口3000上运行,Go服务器在4000上运行。
如果我在浏览器窗口中粘贴GET请求本身,它可以正常工作:http://localhost:4000/numberconverter?number=10&oldBase=10&newBase=2
我做了一些研究并找到了this post,但插件和Chrome选项无济于事。这不是我所做过的唯一研究,但这似乎是最有希望的。我发现的大部分内容都不涉及Go服务器。
我也找到了this post,但这也没有解决我的问题。如果我取消注释服务器中的代码,它仍然会失败。
如果我将允许的方法更改为:
writer.Header().Set("Access-Control-Allow-Methods", "GET, POST, PATCH, PUT, DELETE, OPTIONS")
失败,出现405错误。服务器打印出来:
&{0xc4200f4000 0xc42000a500 {} 0x10ec430 true false false false 0xc4200143c0 {0xc420100000 map[Access-Control-Allow-Origin:[*] Access-Control-Allow-Methods:[GET, POST, PATCH, PUT, DELETE, OPTIONS] Content-Type:[text/plain; charset=utf-8] X-Content-Type-Options:[nosniff]] false false} map[Access-Control-Allow-Origin:[*] Access-Control-Allow-Methods:[GET, POST, PATCH, PUT, DELETE, OPTIONS] Content-Type:[text/plain; charset=utf-8] X-Content-Type-Options:[nosniff]] true 19 -1 405 false false [] 0 [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0 0 0] 0xc4200620e0 0}
我想我的问题是这是服务器端还是客户端的问题以及如何解决问题?
客户端:
import React, {Component} from 'react';
import axios from 'axios';
class Converter extends Component {
constructor(props) {
super(props);
this.state = {
// number: 0,
// base: 10,
// newBase: 10
};
this.convertButtonPressed = this.convertButtonPressed.bind(this);
this.handleChange = this.handleChange.bind(this);
}
handleChange(event) {
const target = event.target;
const value = target.value;
const name = target.name;
this.setState({
[name]: value
});
}
convertButtonPressed(event) {
axios({
method: 'GET',
baseURL: 'http://localhost:4000/',
url: '/numberconverter',
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PATCH, PUT, DELETE, OPTIONS',
'Access-Control-Allow-Headers': 'Origin, Content-Type, X-Auth-Token'
},
params: {
number: this.state.number,
oldBase: this.state.base,
newBase: this.state.newBase
}
});
}
render() {
return (
<div className="App">
<p>Number Converter</p>
<div>
Number:
<input name="number" onChange={this.handleChange} type="text" placeholder="Number"></input><br />
Base:
<input name="base" onChange={this.handleChange} type="text" placeholder="Base"></input><br />
New Base:
<input name="newBase" onChange={this.handleChange} type="text" placeholder="New Base"></input><br />
</div>
<button onClick={this.convertButtonPressed}>Convert</button>
</div>
);
}
}
export default Converter;
服务器:
package rest
// Example:
// http://localhost:3000/numberconverter?number=500000&oldBase=10&newBase=16
import (
"fmt"
"log"
"net/http"
"../converter"
)
// Start starts the server
func Start() {
//muxRouter := http.NewServeMux()
//muxRouter.HandleFunc("/numberconverter", numberconverter)
//http.Handle("/", muxRouter)
http.HandleFunc("/numberconverter", numberconverter)
log.Fatal(http.ListenAndServe(":4000", nil))
}
func numberconverter(writer http.ResponseWriter, response *http.Request) {
//writer.Header().Set("Access-Control-Allow-Origin", "*")
//writer.Header().Set("Access-Control-Allow-Methods", "*")
//writer.Header().Set("Content-Type", "text/html; charset=utf-8")
// Check if the method is a get
if response.Method != http.MethodGet {
http.Error(writer, http.StatusText(405), 405)
fmt.Println(writer)
return
}
number := response.FormValue("number")
oldBase := response.FormValue("oldBase")
newBase := response.FormValue("newBase")
result := converter.ConvertStringNumberToNewBase(number, oldBase, newBase)
fmt.Fprintf(writer, "%s base %s is %s in base %s", number, oldBase, result, newBase)
}
答案 0 :(得分:0)
一旦我在React代码中注释掉了标头,GET请求就起作用了。我要感谢sideshowbarker的答案。我真的很感激。
convertButtonPressed(event) {
axios({
method: 'GET',
baseURL: 'http://localhost:4000/',
url: '/numberconverter',
// headers: {
// 'Access-Control-Allow-Origin': '*',
// 'Access-Control-Allow-Methods': 'GET, POST, PATCH, PUT, DELETE, OPTIONS',
// 'Access-Control-Allow-Headers': 'Origin, Content-Type, X-Auth-Token'
// },
params: {
number: this.state.number,
oldBase: this.state.base,
newBase: this.state.newBase
}
});
}