Author: 永夜
-
Post Views: 34 1. The existing implementation is as follows 2. The generated SQL is as follows 3. However, only1827082629732850,1827082629732857The corresponding type=5, and the other ID’s type != 5. as shown in Figure 1 4. Collect all values of type=5 (that is, image ID), query the corresponding pictures in batches, and attach image data. Re-implement as follows 5. The generated…
-
Post Views: 27 1. Prompt in phpstorm: misspelling in wordsLabelsin. as shown in Figure 1 2. Click Spelling Error: Rename to… , based on the drop-down option: $typeLabels . as shown in Figure 2 3. When git is submitted, it is found that all the places referenced to $typelables have been renamed to $typelabels. in line with expectations.
-
Post Views: 30 1. Now the portal link to switch the role to Distributor is the background homepage:https://console.apply.local/?role=distributor 2. I hope that in this portal URL, all links are automatically added to the request parameter: role=distributor, which is not available now. as shown in Figure 1 3. Create a custom URLManager component Rewrite the CreateUrl method, and automatically attach the…
-
Post Views: 23 1. Execute the migration command: yii migrate –migrationpath=@yii/rbac/migrations, the field length of the string type is 64 2. Create a new migration in this plan, and then modify the length of the field. However, when executing the migration command, an error SQLState is reported[HY000]: General Error: 1833 Cannot Change Columnname: Used in a foreign key constraintauth_item_child_ibfk_1of table.…
-
Post Views: 17 1. In yii2, when the server is abnormal, it does not respond to 500, but prompts in the browser: CORS error, which leads to user experience, the front end has been loaded all the time. The prompts in the console are as follows, as shown in Figure 1 2. The existing logic is in the browser, the…
-
Post Views: 17 1. Request parameters in the interface 2. The final implementation of the Rules in the model is as follows 3. However, the value of the last write to mysql is 2025-04-05 07:59:59 4. yii::$app->formatter is a tool for display, not designed for the format of data storage. Decide to splicing directly, and finally achieve the following 5.…