0
I need help making one get
for my restAPI passing parameter (I don’t know if that’s what it’s called!).
What I do is call a list in http://localhost:6000/API/Stores
axios.get(' http://localhost:6000/API/Lojas ').then(response => {
this.data = response.data.Data
})
I need to do 2 checkbox with values to get this URL:
http://localhost:6000/API/Stores?deleted=true
or
http://localhost:6000/API/Stores?deleted=false
How can I do that? Thank you!
I thought it was simple, I just didn’t know if it was parameters and Google wasn’t helping me rsrs. If I want to pass more parameters, I can add more elements to this property
params
?– Jackson
yes, just put comma
deletado: this.checkbox, outroParams: this.param
and etc– Rafael Augusto
Perfect guy, thank you so much! :)
– Jackson