Home
(current)
Home
Response Metod(ভিবিন্ন ধরনের রেসপন্স)
Response
এর মাধ্যমে অনেক ধরনের ডাটা আদান-প্রদান করা যায়, এখন আমরা নিম্নের মেথড গুলো নিয়ে কাজ করবো
Response String
Response status
Response Json
Response Download
Response redirect
Response header
Set Cookie
Clear Cookie
res.string
res.send
মেথড
res.end
মেথড দ্বারা যে কোন স্ট্রিং
(string)
আদান-প্রদান করা যায়।
আবার app.get মেথড এবং app.post মেথড দিয়ে স্ট্রিং(string) আদান-প্রদান করা যায়।
res.status
মেথড
res.json
মেথড
res.download
মেথড
res.redirect
মেথড
res header
মেথডের জন্য
res.append
মেথড ব্যাবহার করা হয়।
set cookie
জন্য
res.cookie
মেথড ব্যাবহারের মাধ্যমে কুকি সেট করা হয়।
clear cookie
এর জন্য
res.clearCookie
মেথড ব্যাবহার করে কুকি ক্লিয়ার করা হয়।
Top