Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

catch status code 403 in fetch

let response = await fetch(url1);
		console.log(response.status);
		if (response.status == 200) {
			let resJSON = await response.json();
			console.log(resJSON);
            let data=resJSON;
		} else {
			console.log("ERROR");
		}
Comment

PREVIOUS NEXT
Code Example
Javascript :: full screen mode 
Javascript :: send request express 
Javascript :: how to open cypress 
Javascript :: all jquery selectors 
Javascript :: pass function with parameter as prop 
Javascript :: es6 class 
Javascript :: how to calculate first monday of the month in js 
Javascript :: when to use previous state in useState 
Javascript :: Recursion In DOM 
Javascript :: crud operation react js 
Javascript :: dynamic useState in react 
Javascript :: route with parameter react not working not found 
Javascript :: save to local storage 
Javascript :: react navigation header title 
Javascript :: js str split 
Javascript :: react native image swiper 
Javascript :: show password eye icon angular 9 
Javascript :: react rating 
Javascript :: convert string to array with condition javascirpt 
Javascript :: react-drag-drop-files open twice 
Javascript :: document.createelement with id 
Javascript :: react navigation 4 
Javascript :: js sort array 
Javascript :: javascript Insert Item to Map 
Javascript :: js object delete value by key 
Javascript :: react router native back button 
Javascript :: js then vs await 
Javascript :: http_proxy 
Javascript :: javascript highlight element 
Javascript :: javascript templates 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =