Course2857
Course Introduction:Course introduction: 1. Cross-domain processing, token management, route interception; 2. Real interface debugging, API layer encapsulation; 3. Secondary encapsulation of Echarts and paging components; 4. Vue packaging optimization and answers to common problems.
Course1795
Course Introduction:Apipost is an API R&D collaboration platform that integrates API design, API debugging, API documentation, and automated testing. It supports grpc, http, websocket, socketio, and socketjs type interface debugging, and supports privatized deployment. Before formally learning ApiPost, you must understand some related concepts, development models, and professional terminology. Apipost official website: https://www.apipost.cn
Course5521
Course Introduction:(Consult WeChat: phpcn01) The comprehensive practical course aims to consolidate the learning results of the first two stages, achieve flexible application of front-end and PHP core knowledge points, complete your own projects through practical training, and provide guidance on online implementation. Comprehensive practical key practical courses include: social e-commerce system backend development, product management, payment/order management, customer management, distribution/coupon system design, the entire WeChat/Alipay payment process, Alibaba Cloud/Pagoda operation and maintenance, and project online operation. .....
Course5172
Course Introduction:(Consult WeChat: phpcn01) Starting from scratch, you can solve conventional business logic, operate MySQL with PHP to add, delete, modify, and query, display dynamic website data, master the MVC framework, master the basics of the ThinkPHP6 framework, and learn and flexibly master all knowledge involved in PHP development. point.
Course8713
Course Introduction:(Consult WeChat: phpcn01) The learning objectives of the front-end development part of the 22nd issue of PHP Chinese website: 1. HTML5/CSS3; 2. JavaScript/ES6; 3. Node basics; 4. Vue3 basics and advanced; 5. Mobile mall/ Website background homepage layout; 6. Automatic calculation of tabs/carousels/shopping carts...
Implementing an updateable form recordset using stored procedures
2023-09-13 14:06:48 0 1 259
2018-01-05 02:05:53 0 1 871
php - Taobao order splitting table design
2017-05-25 15:08:21 0 2 1915
mysql - 设计一个订单表时,有了唯一的订单号,是否还需要存自增长的ID
在设计一个订单表,用算法生成唯一的订单号可以保证不重复,那么是否还需要自增长的ID呢,还是直接就用订单号作为主键就可以
2017-04-17 13:50:16 0 5 252
Course Introduction:Design method of the order evaluation table of the grocery shopping system in MySQL 1. Introduction In the grocery shopping system, users can evaluate the purchased goods after submitting the order. In order to implement the order evaluation function, a corresponding order evaluation table needs to be designed in the database. This article will introduce in detail the design method of the order evaluation table of the grocery shopping system in MySQL and provide code examples. 2. Table structure design In order to realize the order evaluation function, a separate order evaluation table can be designed. The table can contain the following fields: order_id: order ID, as a foreign key to the order
2023-11-01 comment 0577
Course Introduction:很多朋友会使用饿了么软件来点外卖,订单完成后我们可以去进行评价,下面来为大家讲解一下评价方法,感兴趣的朋友一起来看看吧。1.打开手机中的饿了么软件进入后,在底部工具栏里点击最右边“我的”选项进入,接着在个人中心页面里我的订单下方点击“待评价”按钮。2.接着在待评价页面里会显示有还没有评价的订单,在订单下方有一个“评价”按钮,在上面点击后进入。3.在订单评价的页面里对骑手进行评价后,在下方的满意度、包装、味道后面给餐品打上星星,在下面还可以输入对餐品的评价内容,完成后点击页面右上方的“发布评价”。4.接下来
2024-07-16 comment632
Course Introduction:MySQL table design practice: Create an e-commerce order table and product review table. In the database of the e-commerce platform, the order table and product review table are two very important tables. This article will introduce how to use MySQL to design and create these two tables, and give code examples. 1. Design and creation of order table The order table is used to store the user's purchase information, including order number, user ID, product ID, purchase quantity, order status and other fields. First, we need to create a table named "order" using CREATET
2023-07-03 comment 01977