ਪਤੰਦਰ NaviTheCoderboi
ਪਤੰਦਰ NaviTheCoderboi
HHono
Created by ਪਤੰਦਰ NaviTheCoderboi on 3/27/2025 in #help
Form data error
is it issue with honojs?
13 replies
HHono
Created by ਪਤੰਦਰ NaviTheCoderboi on 3/27/2025 in #help
Form data error
it got solved when i remove 'Content-type' of multipart
13 replies
HHono
Created by ਪਤੰਦਰ NaviTheCoderboi on 3/27/2025 in #help
Form data error
import { Hono } from 'hono';
import { authMiddleware } from '../middlewares/auth.js';
import { validator } from 'hono/validator';

const playlist = new Hono().use(authMiddleware);

playlist.post('/create', async (ctx) => {
console.log(await ctx.req.parseBody());
});

export default playlist;
import { Hono } from 'hono';
import { authMiddleware } from '../middlewares/auth.js';
import { validator } from 'hono/validator';

const playlist = new Hono().use(authMiddleware);

playlist.post('/create', async (ctx) => {
console.log(await ctx.req.parseBody());
});

export default playlist;
13 replies
HHono
Created by ਪਤੰਦਰ NaviTheCoderboi on 3/27/2025 in #help
Form data error
i tried this way also
<button
onClick={() => {
const formData = new FormData();
formData.append('name', 'test');

fetch('http://localhost:8000/playlist/create', {
method: 'POST',
headers: {
'Content-Type': 'multipart/form-data'
},
body: formData,
credentials: 'include'
}).then((v) => {
console.log(v);
});
}}
>
send request
</button>
<button
onClick={() => {
const formData = new FormData();
formData.append('name', 'test');

fetch('http://localhost:8000/playlist/create', {
method: 'POST',
headers: {
'Content-Type': 'multipart/form-data'
},
body: formData,
credentials: 'include'
}).then((v) => {
console.log(v);
});
}}
>
send request
</button>
13 replies
HHono
Created by ਪਤੰਦਰ NaviTheCoderboi on 3/27/2025 in #help
Form data error
yup
13 replies