php小編小新透過 http 請求追加到現有清單是一種常見的資料操作方式。透過傳送 http 請求,我們可以將新的資料追加到現有的清單中,實現資料的動態更新和增加。這種方法在網頁開發中十分常用,可以實現使用者提交資料後的即時顯示和更新。透過 http 請求追加到現有清單的操作簡單快捷,可以提高網頁的互動性和使用者體驗。無論是在前端頁面或後端邏輯中,都可以透過這種方式實現資料的追加,實現更豐富實用的功能。
我正在使用 echo 製作一個簡單的 rest api。我有一個變量,它是以下地圖,基於我製作的這個結構:
type checklist struct { id int `json:"id"` title string `json:"title"` lines []string `json:"lines"` authorname string `json:"authorname"` authorid int `json:"authorid"` tags []tag `json:"tags"` } var ( checklists = map[int]*checklist{} checklistseq = 1 checklistlock = sync.mutex{} )
建立新清單並將其附加到 checklists 變數後,如何發送在新清單的「行」欄位中附加新行的請求?
我想到的解決方案是這樣的:
func createchecklist(c echo.context) error { checklistlock.lock() defer checklistlock.unlock() newchecklist := &checklist{ id: checklistseq, lines: make([]string, 0), tags: make([]tag, 0), } if err := c.bind(newchecklist); err != nil { return err } checklists[newchecklist.id] = newchecklist checklistseq++ return c.json(http.statusok, newchecklist) } func addline(c echo.context) error { checklistlock.lock() defer checklistlock.unlock() id, _ := strconv.atoi(c.param("id")) checklist := *checklists[id] line := []string{""} if err := c.bind(line); err != nil { return err } checklist.lines = line return c.json(http.statuscreated, checklists) }
但是,當我測試此處理程序時,它給出了以下結果:
// 1: Creating a new checklist $ curl -X POST -H 'Content-Type: application/json' -d '{"title": "test"}' localhost:1234/checklist >> {"id":1,"title":"test","lines":[],"authorName":"","authorID":0,"tags":[]} // 2: Check to see the checklist has been created. $ curl -X GET localhost:1234/checklist >> {"1":{"id":1,"title":"test","lines":[],"authorName":"","authorID":0,"tags":[]}} // 3: Attempting to create a new line $ curl -X POST -H 'Content-Type: application/json' -d '{"lines": "test123"}' localhost:1234/checklist/1 >> curl: (52) Empty reply from server // 4: Confirming it hasn't been created. $ curl -X GET localhost:1234/checklist >> {"1":{"id":1,"title":"test","lines":[],"authorName":"","authorID":0,"tags":[]}}
因此該函數實際上不起作用,因為將 post ping 到適當的路由時既沒有傳回預期的回應,也沒有將該行實際新增至欄位。
func addline(c echo.context) error { checklistlock.lock() defer checklistlock.unlock() id, err := strconv.atoi(c.param("id")) if err != nil { return err } // do not deref *checklist cl, ok := checklists[id] if !ok { return echo.errnotfound } // use same structure as the expected json var input struct { lines []string `json:"lines"` } // always pass a pointer to c.bind if err := c.bind(&input); err != nil { return err } // do not overwrite previously written lines, use append cl.lines = append(cl.lines, input.lines...) return c.json(http.statusok, cl) }
現在嘗試:
$ curl -X POST -H 'Content-Type: application/json' -d '{"lines": ["test123"]}' localhost:1234/checklist/1
(注意 "test123"
括在括號中)
以上是透過 http 請求追加到現有列表的詳細內容。更多資訊請關注PHP中文網其他相關文章!