Community
Articles
Topics
Q&A
Learn
Course
Programming Dictionary
Tools Library
Development tools
Website Source Code
PHP Libraries
JS special effects
Website Materials
Extension plug-ins
AI Tools
Leisure
Game Download
Game Tutorials
English
简体中文
English
繁体中文
日本語
한국어
Melayu
Français
Deutsch
Login
singup
Next Section: Internationalization of Flash messages
(668 plays)
Next Section
Watch Again
ဆ
Chapter
Note
Ask
Courseware
Feedback
Symfony5 [Develop blog system from scratch]
Chapter1 Introduction to Symfony
1-1 Introduction to Symfony
1-2 Install the running environment and initialize the Symfony project
1-3 Create the first page using Controller
Chapter2 Basic creation and testing of blog content
2-1 Symfony's process of handling http requests
2-2 query parameters of http request
2-3 Placeholders in path - route parameters
2-4 Mysql container service using docker
2-5 Install orm components
2-6 Introduction to Test Driven Development (TDD)
2-7 Create your first unit test
2-8 Add Comment class to add comments to articles
2-9 Add association between article class and comment class
2-10 PostFactory article factory
2-11 Optimize PostFactory class
2-12 Mock stand-in
2-13 Fix test code using Mock
2-14 Use the command line to create the database table corresponding to the Entity class
2-15 Using the database in a test environment
2-16 Integration Testing
2-17 Continue to modify the integration test code
2-18 Use the setUp method to clear the database before each test method
2-19 4 query methods of the Repository class
Chapter3 Blog advanced configuration
3-1 Doctrine QueryBuilder object introduction
3-2 Doctrine Query Language(DQL)
3-3 Install orm-fixtures component
3-4 Use EasyAdminBundle management terminal
3-5 Configure PostCrudController to create an article management page
3-6 Configure CommentCrudController to create a comment management page
3-7 Twig template engine installation
3-8 Blog home page routing
3-9 Complete the controller method of the homepage
3-10 Basic usage of Twig and complete home page display
3-11 Read the PrestaShop source code and learn Symfony project skills
3-12 Fix page issues
3-13 Article details page
3-14 Create a comment form class CommentType
3-15 Handle comment form data submission
3-16 Install the encore component using webpack
3-17 Convert html template to twig template
3-18 The style of the comment form and the display of the comment list
3-19 Test submission of comment form using functional tests
3-20 Nested single table one-to-many relationship for comments
3-21 Add reply comment controller method
3-22 Use of FosJsRoutingBundle
3-23 Handle submission of reply to comment form
3-24 Fixed bug in reply comment form box
3-25 Comment reply level control
3-26 Install Panther and test using a real browser
3-27 Writing Panther test code
3-28 Preparation before pagination Create some fake article data
Chapter4 File upload and form events
4-1 Create some fake review data
4-2 Pagination of article list
4-3 Use KnpPaginatorBundle to paginate the comments list
4-4 Internationalization of pager
4-5 Add page feedback using Flash messages
4-6 Add file upload FileManaged class
4-7 JoinTable method realizes one-way one-to-many
4-8 CollectionType and form row template overrides
4-9 File upload dom event handling
4-10 Handle data submitted for file upload
4-11 Fix the bug in the file upload button of the reply comment form box
4-12 Custom file upload form type
4-13 Form events
4-14 Automatic cropping of LiipImagineBundle comment pictures
4-15 Integrate lightbox2 library
4-16 Management side comment list display picture
4-17 Doctrine life cycle events
4-18 Date attribute adjustment of Post class
4-19 Display of comment list sub-comment post attributes
4-20 Fixed the issue where child comments are deleted at the same time when the parent comment is deleted
4-21 form validation
4-22 Custom validator
4-23 Comment content filtering
4-24 Custom event subscriber
4-25 Event processing priority and GenericEvent
4-26 Delete the comment image after deleting the comment on the management side