0%

Golang basics - fetch JSON from an API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
handleSubmit(e) {
e.preventDefault();

const { name, password, department, gender } = this.state;
fetch('http://localhost:8080/api/user', {
mode: "cors",
method: 'POST',
// 使用fetch提交的json数据需要使用JSON.stringify转换为字符串
body: JSON.stringify({
name,
password,
department,
gender
}),
headers: {
"Content-Type": "application/x-www-form-urlencoded",
}
})
.then((res) => res.json())
.then((res) => {
// 当添加成功时,返回的json对象中应包含一个有效的id字段
// 所以可以使用res.id来判断添加是否成功
if (res.id) {
alert('添加用户成功');
this.setState({
name: '',
password: 0,
gender: ''
});
} else {
alert('添加失败');
}
})
.catch((err) => console.error(err));
}
1
2
3
4
5
6
7
8
9
10
11
12
func userAdd(w http.ResponseWriter, r *http.Request) {
body, readErr := ioutil.ReadAll(r.Body)
if readErr != nil {
log.Fatal(readErr)
}
user := User{}
jsonErr := json.Unmarshal(body, &user)
if jsonErr != nil {
log.Fatal(jsonErr)
}
fmt.Println(string(body), user)
}

参考:https://blog.alexellis.io/golang-json-api-client/