2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 11:40:58 +00:00

Initial commit for api.js

- GET JSON call with console output
- Provide filters
This commit is contained in:
Oliver
2018-05-04 23:43:41 +10:00
parent 2edb865528
commit 83dd068fec
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,21 @@
function inventreeGet(url, filters={}) {
$.ajax({
url: url,
type: 'get',
data: filters,
dataType: 'json',
success: function(response) {
console.log('Success GET data at ' + url);
return response;
},
error: function(xhr, ajaxOptions, thrownError) {
console.error('Error on GET at ' + url);
console.error(thrownError);
return {};
}
})
}
function getParts(filters={}) {
return inventreeGet('/api/part/', filters);
}