mirror of
https://github.com/jaywcjlove/reference.git
synced 2025-06-16 04:01:21 +08:00
feat: add toml
cheatsheet.
This commit is contained in:
@ -10,7 +10,7 @@ JavaScript 备忘清单
|
||||
|
||||
JavaScript 是一种轻量级的解释型编程语言。
|
||||
|
||||
- [JSON 备忘清单](/json)
|
||||
- [JSON 备忘清单](json.md)
|
||||
- [JavaScript 中的正则表达式](/regex#regex-in-javascript)
|
||||
|
||||
### 打印调试
|
||||
@ -1411,7 +1411,7 @@ const getSuggestions = async () => {
|
||||
const wordQuery = inputField.value;
|
||||
const endpoint = `${url}${queryParams}${wordQuery}`;
|
||||
try{
|
||||
const response = await fetch(endpoint, {cache: 'no-cache'});
|
||||
const response = await fetch(endpoint, {cache: 'no-cache'});
|
||||
if(response.ok){
|
||||
const jsonResponse = await response.json()
|
||||
}
|
||||
|
Reference in New Issue
Block a user