Skip to content

Commit e57e30d

Browse files
committed
Upload request method of Axios
1 parent 1290ea8 commit e57e30d

1 file changed

Lines changed: 22 additions & 4 deletions

File tree

data/axios-cheat-sheet.json

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
"slug": "axios-cheat-sheet",
55
"description": "এক্সিয়স চিটশিট",
66
"colorPref": "#2F3D75",
7-
"contents": [
8-
{
7+
"contents": [{
98
"title": "ইন্সটল প্রক্রিয়া",
10-
"items": [
11-
{
9+
"items": [{
1210
"definition": "(npm) দিয়ে ইন্সটল করার জন্য",
1311
"code": "npm i axios"
1412
},
@@ -29,6 +27,26 @@
2927
"code": "bower install axios"
3028
}
3129
]
30+
},
31+
{
32+
"title": "রিকোয়েস্ট উদাহরণ",
33+
"items": [{
34+
"definition": "ডাটা get এর জন্য",
35+
"code": "axios.get()"
36+
},
37+
{
38+
"definition": "ডাটা post এর জন্য",
39+
"code": "axios.post()"
40+
},
41+
{
42+
"definition": "ডাটা delete এর জন্য",
43+
"code": "axios.delete()"
44+
},
45+
{
46+
"definition": "সিঙ্গেল ডাটা মডিফাই করার জন্য",
47+
"code": "axios.put()"
48+
}
49+
]
3250
}
3351
]
3452
}

0 commit comments

Comments
 (0)