var appController = (function () {
return {
save: function (_item, _tipo) {
APP.rq.axios.put(APP.ctrl + '/proyeccion', _item)
}
}
}
What I want to know is how to pass the variable _type within the chain.
Projection is the call to httpput
item is my data that will be recorded.
I want to pass both variables
Thank you very much