tenx() 方法屬於fetchapi的一部分 它返回乙個promise例項物件 用於獲取後台返回的資料 可呼叫後面的then方法
1.fetch常用配置選項// fetch的基本用法
)
method: get/post/put/delete 預設為get
body:http的請求引數
headers:http的請求頭 預設為{}
傳統形式的url傳參 get請求
)festful形式的url傳參 get請求
post請求
fetch響應結果const bodyparser =
require
('body-parser');
use(bodyparser.
json()
);use(bodyparser.
urlencoded()
);post
('/fetchpost'
,(req, res)
=>
)// post 請求傳參
// 傳統方法
);
1 text() 將返回的結果處理成字串型別
2 json() 將結果和json.parse(responsetext)一樣
// text() 將返回的結果處理成字串型別
// json() 將結果和json.parse(responsetext)一樣
mysql 的基本用法 mysql基本用法
mysql 5.1 中文參考手冊 show databases 顯示資料庫 drop database 資料庫名 刪除資料庫 set names utf8 設定資料庫編碼為utf 8 source x 資料庫名.sql 匯入乙個資料庫 use 資料庫名 嘗試訪問資料庫 create database...
mysql 的基本用法 mysql基本用法
mysql 5.1 中文參考手冊 show databases 顯示資料庫 drop database 資料庫名 刪除資料庫 set names utf8 設定資料庫編碼為utf 8 source x 資料庫名.sql 匯入乙個資料庫 use 資料庫名 嘗試訪問資料庫 create database...
this的基本用法
this 代表所在類的物件的引用。方法被那個物件呼叫,this就代表哪個物件,簡單的說,他就代表當前類的乙個物件。注意 誰呼叫這個方法,在方法內部的this就代表誰。this的應用場景 解決區域性變數,隱藏成員變數。class student 姓名設定值 public void setname st...