, ,

การสอนการสร้างเว็บไซต์ร้านค้าออนไลน์ด้วย Node.js, Express.js, React.js และ MySQL | E-Commerce | ตอนที่ 5

Posted by


สวัสดีครับ/ค่ะ ในตอนนี้เราจะมาเรียนรู้วิธีการสร้างเว็บร้านค้าออนไลน์โดยใช้เทคโนโลยี Node.js, Express.js, React.js และ MySQL ซึ่งเป็นเทคโนโลยีที่มีความนิยมและใช้งานได้ง่าย โดยเราจะมาเริ่มต้นจากตอนที่ 5 ของคอร์สนี้

ในตอนที่ 5 เราจะทำการสร้างฟอร์มให้ผู้ใช้สามารถเพิ่มสินค้าใหม่ลงในร้านค้าของเราได้ โดยเราจะใช้ React.js ในการสร้าง UI และ Express.js ทำหน้าที่เป็น API ที่จะช่วยในการส่งข้อมูลระหว่าง Frontend กับ Backend

เริ่มจากการสร้าง React Component สำหรับฟอร์มเพิ่มสินค้า โดยสร้างไฟล์ AddProduct.js ในโฟลเดอร์ src/components

import React, { useState } from 'react';

const AddProduct = () => {
  const [productName, setProductName] = useState('');
  const [price, setPrice] = useState('');

  const handleSubmit = async () => {
    try {
      const response = await fetch('/api/products', {
        method: 'POST',
        headers: {
          'Content-Type': 'application/json'
        },
        body: JSON.stringify({ productName, price })
      });
      const data = await response.json();
      console.log(data);
    } catch (error) {
      console.error('Error adding product:', error);
    }
  };

  return (
    <div>
      <input type="text" placeholder="Product Name" value={productName} onChange={(e) => setProductName(e.target.value)} />
      <input type="text" placeholder="Price" value={price} onChange={(e) => setPrice(e.target.value)} />
      <button onClick={handleSubmit}>Add Product</button>
    </div>
  );
};

export default AddProduct;

จากนั้นสร้าง route ใหม่ใน Express.js ที่จะรับข้อมูลการเพิ่มสินค้าจากฟอร์ม

app.post('/api/products', async (req, res) => {
  const { productName, price } = req.body;

  try {
    const result = await pool.query('INSERT INTO products (product_name, price) VALUES (?, ?)', [productName, price]);
    res.status(201).json({ message: 'Product added successfully' });
  } catch (error) {
    console.error('Error adding product:', error);
    res.status(500).json({ message: 'Error adding product' });
  }
});

และสร้าง SQL query ในการเพิ่มสินค้าใหม่ในฐานข้อมูล MySQL

INSERT INTO products (product_name, price) VALUES (?, ?);

ทดสอบโปรเจคของคุณโดยทำการเข้าไปใน Folder ของ Frontend และ Backend และรันคำสั่งตัวนี้

npm start

หลังจากนี้คุณจะสามารถเข้าถึงฟอร์มการเพิ่มสินค้าในหน้าเว็บได้ และเมื่อคุณกรอกข้อมูลและกดปุ่ม Add Product ข้อมูลจะถูกส่งไปยัง Express.js API และบันทึกลงในฐานข้อมูล MySQL อย่าลืมทดสอบให้แน่ใจว่าคุณสามารถเพิ่มสินค้าได้สำเร็จ

หวังว่าทุกคนจะพอใจกับคอร์สนี้แล้วและขอให้โชคดีในการพัฒนาเว็บร้านค้าออนไลน์ของคุณครับ/ค่ะ ขอบคุณครับ/ค่ะ!

0 0 votes
Article Rating

Leave a Reply

7 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
@skhamphoy
21 days ago

ขอบคุนมาก2

@witty2175
21 days ago

ขอบคุณครับ

@krittinklinhom9017
21 days ago

ไปกันต่อครับบ 🙂

@thancholham8378
21 days ago

เราจะสร้างผลผลิตทางการเกษตรไปด้วยกันครับ

@waroonpornrattanabhutchai7432
21 days ago

เย้ตามพี่ถึงคลิป Ep นี้แล้ว พร้อมไปต่อครับพี่ ชิลล์มากพอพ้น ep แรก มา รู้สึกเบาเลย 5555

@longluk-7334
21 days ago

ขอบคุณค่าาาา

@delphidelphidelphi
21 days ago

อธิบายได้เข้าใจง่ายครับ ep ก่อนนี้ sustan ฟังแล้ว เข้าใจง่ายครับ เป็นกำลังใจให้ครับ รอ Next EP เลย…🤟🤟

7
0
Would love your thoughts, please comment.x
()
x