Category: Web Application Development
-
Post Views: 18 1. There are now 2 projects, and their domain names are: Object.local, Object-master.local. The redis configuration of its .env file is as follows 2. However, the performance at this stage is that both projects still use Redis 1. The problem caused by sharing a Redis 1 database is that when Object.local is opened, and then Object-master.local is…
-
Post Views: 21 1. Run successfully in Altair GraphQL Client. as shown in Figure 1 2. Edit the test file, /modules/themestore/tests/functional/graphql/MutationThemeAssetGraphQLapTest.php. 3. Run the test case and report an error: Expected Type ThemeAssetCreateInput to be an object. as shown in Figure 2 4. Re-edit the test file 5. Run the test again and the test passes. 6. Run the test…
-
Post Views: 19 1. In PHPStorm and Laravel 6, the event log: Switch Laravel Idea Module System to Laravel-Modules? Switch or DonT show this again. as shown in Figure 1 2. Reference:https://laravel-idea.com/docs/modules. Laravel Idea uses module system concepts to understand the structure of the application. It helps with the correct view, configuration, routing and more convenient code generation. The module…
-
Post Views: 14 1. Error in Laravel 6: Target[Interface]Is not instantiable while building[Resolver]. as shown in Figure 1 2. Check /modules/themestore/providers/themestoreServiceProvider.php, prompting undefined classThemeschemaLoaderInterface. as shown in Figure 2 3. However, you can confirm the classThemeschemaLoaderInterfaceis there. In the end, I found that the path of use is wrong. Delete the theme\ from the path. IDE no longer prompts. as…
-
Post Views: 19 1. Refer to the template source code editing in the Shopify background, when uploading a file greater than 50 MB, the response 413 request entity too large. This should be limited by the settings of the Nginx server: client_max_body_size 50M . as shown in Figure 1 2. When uploading a 48.5 MB CSS file, it takes 2…
-
Post Views: 19 1. The structure when the request responds successfully. as shown in Figure 1 2. However, at this stage, there is no security verification for the request parameters. Reference:https://lighthouse-php.com/master/security/validation.html#single-arguments. Lighthouse allows you to use Laravel’s validation in queries and changes. as shown in Figure 2 3. Although the change of this GraphQL API has only 3 parameters in…
-
Post Views: 20 1. Add Template to create a template. as shown in Figure 1 2. Click the save button to view the network request. Request URL:https://xxx.myshopify.com/admin/themes/111/assets. Request method: POST. This is the REST implementation. as shown in Figure 2 Requested form data: Response data: 3. The API for creating template files is not implemented in GraphQL. Decided to refer…
-
Post Views: 18 1. Reference: Some thoughts and practices to migrate from REST to GraphQL, refer to GitHub. On the left is the top-level directory structure of the template file. For each top-level directory, you need to set whether to allow new files. as shown in Figure 1 2. This plan draws on the response structure of Shopify’s GraphQL, but…
-
Post Views: 17 1. In Laravel Telescope, the page has been in Scanning…. View the network, tableObject_Store.teleScope_Entriesdoesn’tt exist. as shown in Figure 1 2. Run the migrate command: 3. Refresh the page, the response is 200. as shown in Figure 2