We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1290ea8 commit e57e30dCopy full SHA for e57e30d
1 file changed
data/axios-cheat-sheet.json
@@ -4,11 +4,9 @@
4
"slug": "axios-cheat-sheet",
5
"description": "এক্সিয়স চিটশিট",
6
"colorPref": "#2F3D75",
7
- "contents": [
8
- {
+ "contents": [{
9
"title": "ইন্সটল প্রক্রিয়া",
10
- "items": [
11
+ "items": [{
12
"definition": "(npm) দিয়ে ইন্সটল করার জন্য",
13
"code": "npm i axios"
14
},
@@ -29,6 +27,26 @@
29
27
"code": "bower install axios"
30
28
}
31
]
+ },
+ {
32
+ "title": "রিকোয়েস্ট উদাহরণ",
33
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
+ ]
50
51
52
0 commit comments