前端本地將服務模擬跑起來

2022-04-09 05:53:13 字數 596 閱讀 9249

1、使用json-server外掛程式

可以根據乙個json檔案,開啟乙個介面伺服器,並且提供假資料。

2、如何使用?

-安裝:`npm i json-server -g`

-使用:`json-server  json檔案的路徑`

如:http://localhost:3000/list

3、遵循rest api格式

- 獲取用get

- 新增用post

- 刪除用delete

- 修改用put/patch

4、-get:獲取全部:http://localhost:3000/list

獲取具體某個  http://localhost:3000/list/1

-post:新增 http://localhost:3000/list

id不需要

引數:-delete:http://localhost:3000/list

-put/patch:

需要:  -> 

-put:修改乙個http://localhost:3000/list/1

把需要修改的和不需要修改的都要傳過去

5、安裝axios外掛程式

將git上專案在本地跑起來

配置使用者名稱 git config global user.name username username 是自己的賬戶名,配置郵箱 git config global user.email username email.com username email.com 註冊賬號時用的郵箱 再把git上...

前端在本地啟動服務預覽html頁面

在開發移動端專案時瀏覽器裡出來的效果往往到真機上和預想的有出入,在開發過程中知道了乙個可以在本地自己啟動乙個伺服器在手機預覽的辦法。1 首先在終端安裝http。npm i http server g。g全域性安裝 安裝成功之後 2 cd到需要檢視的頁面的資料夾處 該資料夾必須是包含js css等所有...

模擬本地向伺服器上傳檔案

簡單學習了tcp通訊,想實現乙個本地向伺服器上傳檔案的程式。由於現在還沒有伺服器,就用本地當伺服器自娛自樂一下子。public class server else bufferedoutputstream bos newbufferedoutputstream new fileoutputstrea...