Year: 2022
-
Post Views: 18 1. Print the SQL statement executed by the program, and the result is as follows. as shown in Figure 1 2. The number of SQL statements executed by the print program is 79. Array elements start with 0. as shown in Figure 2 3. Print the SQL and copy it to MySQL 5.7 to execute. Its number…
-
Post Views: 23 1. To set the configuration value at runtime, pass an array to the config function, which is reset in the middleware 2. The Singleton method binds a class or interface to a container that is only parsed once. Once the singleton binding is resolved, the same object instance will be returned to the container in subsequent calls.…
-
Post Views: 18 1. The existing code is implemented as follows 2. The interface response structure is as follows, as shown in Figure 1 3. It is expected to put some fields in the field Theme_Installation into the first level, that is, level with the ID, and finally delete the Theme_Installation. 4. The final implementation code is as follows 5.…
-
Post Views: 24 1. The correlation of the model Theme is as follows 2. The correlation of the model ThemeInstallation is as follows 3. Error when obtaining the associated attribute: sqlstate[42S02]: base table or view not found: 1146 tableObject_wp.wp_theme_installationdoesn’tt exist . as shown in Figure 1 4. The table Theme_Installation does not exist in object_wp.wp_theme_installation, but actually exists in…
-
Post Views: 71 1. Reference: Use of git cherry-pick on the command line 2. Reference: https://tortoisegit.org/docs/tortoisegit/tgit-dug-cherrypick.html . 3. Switch to branch B and extract the commit of branch A to branch B. Display logs. as shown in Figure 1 4. Click Branch B to select Branch A. as shown in Figure 2 5. Select Branch A, and then select…
-
Post Views: 17 1. Now you need to apply some commits on branch A to branch B. 2. Switch to branch: B, execute the command: git cherry-pick fbf19e86. Error: Conflict (Content): merge Conflict in platform/app/services/themeservice.php . Error: could not apply fbf19e86f4… . as shown in Figure 1 3. The reason was found. The reason is that there are still some…
-
Post Views: 16 1. In a template directory, because there are some files that need to be ignored, it is also written into the table, so it needs to be filtered out. Reference: In Laravle 6, togos/phpgitignore, implementation for parsing and applying .gitignore class rules 2. The current code implementation 3. The result is for example: the file starting with…
-
Post Views: 18 1. There is a folder at this stage, which contains a configuration file similar to .gitignore: .themeignore, the content is as follows 2. You need to ignore some files based on this file configuration, and only include the required files. For example: filter out node_modules/* . as shown in Figure 1 3. Install togos/gitignore based on composer…
-
Post Views: 18 1. In the startup script of the docker container, if you want to force the migration command to run without prompt, use the –force parameter 2. At this stage, there is a module developed based on Laravel Modules, and there are migration files, such as: /modules/themestoredb/database/migrations . as shown in Figure 1 3. In the local development…