Building a Course Detail Page with Video Playback in a Django-Vue3 E-Learning Platform
Backend Data Modeling and API Endpoints
To support course browsing and detailed viewing, the backend defines several interrelated models:
Course: Contains fields like name, level, price, sales, hours, total_jie (total sections), video_url (intro video), and question (FAQ).
Chapter: Linked to Course via foreign key; includes name, order, summar ...
Posted on Thu, 14 May 2026 04:48:13 +0000 by kamasheto
E-commerce Order Management System Implementation
Overview
Preventing Page Scaling
To disable user zoom functionality:
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
State Management for Categories
mapActions Helper Funciton
methods: {
...mapActions({
fetchCategoryList: 'fetchCategoryList'
}),
}
// Invoke using this.fe ...
Posted on Sun, 10 May 2026 23:29:23 +0000 by gacon