fix: fetch was not using rest requests
This commit is contained in:
@@ -83,7 +83,12 @@ function BlogPage() {
|
|||||||
const [blogs, setBlogs] = useState<Blog[]>([]);
|
const [blogs, setBlogs] = useState<Blog[]>([]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetch(`${API_URL}/blogs`)
|
fetch(`${API_URL}/blogs`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((data: Blog[]) => setBlogs(data))
|
.then((data: Blog[]) => setBlogs(data))
|
||||||
.catch((err) => console.error(err));
|
.catch((err) => console.error(err));
|
||||||
|
|||||||
@@ -4,7 +4,12 @@ import { API_URL } from "./constants";
|
|||||||
export function BlogList() {
|
export function BlogList() {
|
||||||
const [content, setContent] = useState("");
|
const [content, setContent] = useState("");
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetch(`${API_URL}/get-blogs`)
|
fetch(`${API_URL}/get-blogs`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then(setContent);
|
.then(setContent);
|
||||||
}, []);
|
}, []);
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ export function BlogViewer() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!slug) return;
|
if (!slug) return;
|
||||||
fetch(`${API_URL}/blogs/${slug}`)
|
fetch(`${API_URL}/blogs/${slug}`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((data: Blog) => setBlog(data))
|
.then((data: Blog) => setBlog(data))
|
||||||
.catch((err) => console.error(err));
|
.catch((err) => console.error(err));
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ export function EditBlog() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!slug) return;
|
if (!slug) return;
|
||||||
fetch(`${API_URL}/blogs/${slug}`)
|
fetch(`${API_URL}/blogs/${slug}`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
})
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((data: Blog) => {
|
.then((data: Blog) => {
|
||||||
setBlog(data);
|
setBlog(data);
|
||||||
|
|||||||
Reference in New Issue
Block a user