Build a code debugging blog using this as a guideline. Be sure to read canvas to optimize opportunities for points.
Start backend using Debugging
I started the backend with Debugging to show the steps and processes involved in the backend and how the interpreter iterates through it.
Set break point at the beginning of endpoint code
I set a breakpoint and the endpoint code to enter in the CRUD and go into the image function.
Start in frontend with split screen loading source for an API fetch using GET. I put the API FETCH over here so I could enter into the request sent to the backend.
Set break point on fetch, inside .then, inside .fetch
Run frontend, screen capture break at fetch while examining Body
Press play on frontend, observe stop inside of backend. I observe the stop inside the backend since it sends a request that leads into it.
Press step over on backend until you have obtained data from database, screen capture Python Object
Press play button to end backend debugging session.
Return to frontend debug session
Step in until you see data, screen capture capturing break point and Data.
Build a code debugging blog using this as a guideline. Be sure to read canvas to optimize opportunities for points.
Start backend using Debugging I started the backend with Debugging to show the steps and processes involved in the backend and how the interpreter iterates through it.
Set break point at the beginning of endpoint code I set a breakpoint and the endpoint code to enter in the CRUD and go into the image function.
Start in frontend with split screen loading source for an API fetch using GET. I put the API FETCH over here so I could enter into the request sent to the backend.
Set break point on fetch, inside .then, inside .fetch
Run frontend, screen capture break at fetch while examining Body
Press play on frontend, observe stop inside of backend. I observe the stop inside the backend since it sends a request that leads into it.
Press step over on backend until you have obtained data from database, screen capture Python Object
Press play button to end backend debugging session.
Return to frontend debug session Step in until you see data, screen capture capturing break point and Data.