mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
875 B
41 lines
875 B
import axios from 'axios'
|
|
const baseURL = 'http://127.0.0.1:3000/v1' // Todo: change URL by development/staging/production.
|
|
|
|
export default class ApiService {
|
|
constructor() {
|
|
this.instance = axios.create({
|
|
baseURL
|
|
})
|
|
}
|
|
|
|
request(method, url, data = {}, config = {}) {
|
|
return this.instance({
|
|
method,
|
|
url,
|
|
data,
|
|
...config
|
|
})
|
|
.then(response => response.data)
|
|
.catch(error => error)
|
|
}
|
|
|
|
get(url, config = {}) {
|
|
return this.request('GET', url, config)
|
|
}
|
|
|
|
post(url, data, config = {}) {
|
|
return this.request('POST', url, data, config)
|
|
}
|
|
|
|
put(url, data, config = {}) {
|
|
return this.request('PUT', url, data, config)
|
|
}
|
|
|
|
patch(url, data, config = {}) {
|
|
return this.request('PATCH', url, data, config)
|
|
}
|
|
|
|
delete(url, config = {}) {
|
|
return this.request('DELETE', url, {}, config)
|
|
}
|
|
}
|