أكسيوس إي بي أي
المرجع لأكسيوس إي بي أي
يمكن للطلبات أن تمرر التي لها صلة بالإعداداتaxios
.
axios(config)
// إرسال طلب بوست
axios({
method: 'post',
url: '/user/12345',
data: {
firstName: 'Fred',
lastName: 'Flintstone'
}
});
// طلب غيت لصورة في نود جي إس
axios({
method: 'get',
url: 'http://bit.ly/2mTM3nY',
responseType: 'stream'
})
.then(function (response) {
response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});
axios(url[, config])
// إرسال طلب غيت (فونكشن إفتراضي)
axios('/user/12345');
Request method aliases
.قدمت كافة الفونكشن المدهومة لملائمة الاسماء المستعارة
axios.request(config)
axios.get(url[, config])
axios.delete(url[, config])
axios.head(url[, config])
axios.options(url[, config])
axios.post(url[, data[, config]])
axios.put(url[, data[, config]])
axios.patch(url[, data[, config]])
ملاحظة
When using the alias methods url
, method
, and data
properties don't need to be specified in config.
.data
و url
, method
ليس هنالك حاجة لتوصيف الاسماء المستعارة للفونكشنز عند استخدام