javascript - 使用json-server POST 資料結果只有id
typecho
typecho 2017-06-12 09:24:07
0
1
857

使用json-server作為資料提供來源

fetch('http://localhost:3000/user', {
            method: 'POST',
            body: JSON.stringify({name:name.value, age:age.value, gender:gender.value}),
                headers: {
                    'Cotent-Type': 'application/json'
                }
            })
            .then(res => res.json())
            .then(res => {
                if (res.id) {
                    alert('添加用户成功');
                    this.setState({name: '', age: 0, gender: ''});
                } else {
                    alert('添加失败');
                }
            })
            .catch(err => console.error(err));

結果只增加了一個

  {
    "id": 10002
  }

network裡發送了兩個請求,一個是OPTION請求,請問這個請求是做什麼用的?
第二個請求是post請求,包含了要新增的數據,可是json檔案裡只有一個id訊息,求解

typecho
typecho

Following the voice in heart.

全部回覆(1)
学霸

fetch方法發送的兩個請求分別是

第一個post過去method裡的方法,例如你可以把method: 'POST'改成method: 'PUT',post過去就是PUT這些設定資訊

第二個就是i發送請求了,json檔案只有id資訊?是後台設定問題吧?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板