I'm learning JavaScript and POO so I can be doing some bullshit, I'm trying to make a navbar and that navbar open different functions of different classes in other files.
This part where you have the return arrow, the text 'products' and the...
I'm studying React, I'm currently in version 16.6.3.
I really enjoyed using it, I'm reading a lot of its documentation and implementing it as well. I have a lot to learn.
I learned a little about the Routes, I was able to navigate between the...
I'm having a problem and have tried several ways to solve it ... I need to get the value of the child element and pass it to the parent.
Within this form, I have these plus and minus buttons (if there is no shorter than this, it puts an X)....
Today I realized the acquisition of a theme for React, and when I went to execute the npm install commands to download the modules of the node and soon after I executed the command npm serve it returned an error to me as shown in t...
Good afternoon,
I have a question regarding the use of sagas.
I have a button that when clicked, triggers a function that calls an action:
onClickChainIdentifier = (event) => {
//action disparada
this.props.getChains();...
I'm making a memory game in React using typescript to learn. In the getCards function, I look for 6 backend cards, put them in an array, duplicate this array, and popup and refresh the screen.
private getCards = async () => {
con...
I'm like a problem in my code, I want to put the name next to the title and comment of the person ... This data comes from 2 different apis of the jsonplaceholder.
So in tbody I have 2 this.state.users.map and this.state.posts.map wanted to put...
I'm trying to make the request for an API, using Axios:
axios.post('http://api.teste.com.br/v1/getToken', {
withCredentials: true,
auth: {
username: 'usuario',
password: 'password'
},
headers: {...
I'm using React to develop the front and C # Web APIs for back.
I'm trying to submit a form that has an input file, in the API I created a ViewModel to receive this data. Before submitting, I put form data in a FormData , which is being...