日常看貼的零碎點

2022-06-10 04:51:08 字數 1118 閱讀 3064

restful風格:

非rest的url:http://…../queryitems.action?id=001&type=t01

rest風格的url:http://…./id/001/type/t01

ajax的寫法:

var xhttp = new xmlhttprequest();

是瀏覽器提供的原生ajax介面

fetch的用法:// url (必須), options (可選)

fetch('/some/url', ).then(function(response) ).catch(function(err) );

// 鏈式處理,將非同步變為類似單執行緒的寫法: 高階用法.

fetch('/some/url').then(function(response) ).then(function(returnedvalue) ).catch(function(err) );

//對請求響應頭的操作

// 建立乙個空的 headers 物件,注意是headers,不是header

var headers = new headers();

// 刪除某條請求頭資訊(a header)

headers.delete('x-my-custom-header');

// 建立物件時設定初始化資訊

var headers = new headers();

var request = new request('/some-url', ) }); fetch(request).then(function() );

var uploadreq = new request("/uploadimage", , body: "image data" });

fetch(uploadreq ).then(function() );

零碎知識點

1.反斜槓也可拼接字串 window.nl ad function window.nl ad function 2.在console.log 中新增樣式 var a hello console.log c a,font size 400 background blue color white 3 通...

筆記之零碎點

include int main include include int main 執行結果 執行結果 請輸入一段文字 yfu 67t87y 輸入的文字字元數為 10 輸入的文字資訊是 yfu 67t8 此處換行符會被過濾掉,所以逐行讀取,手動新增endl。include include inclu...

零碎芝士點

1.c語言函式題需要輸入 輸出字串,由於c語言無字串型別,故使用字元型陣列 printf 輸出 char c printf s c 必須得是字元陣列名,按字元陣列名c找到其陣列起始位址,然後逐個輸出其中的字元,直到遇到 0 為止。scanf 輸入 scanf 逐個字元輸入 char c 10 for...