By admin, 25 二月, 2022 达梦数据库 达梦数据库DM8 x86平台 Linux版下载地址:https://package.dameng.com/eco/adapter/DM8/202110/dm8_20211021_x86_rh6_64_ent.zip 达梦数据库DM8 x86平台 Windows 64位版下载地址:https://package.dameng.com/eco/adapter/DM8/202110/dm8_20211025_x86_win_64_ent.zip
By admin, 15 二月, 2022 Services and dependency injection Drupal 8以后开始使用面向对象方式编写,其中一个重要的设计模式是使用服务容器和依赖注入。改模式的一个重要用途是可以写一些stub进行单元测试。 Drupal用这个模式源自其依赖的Symfony: https://symfony.com/doc/current/components/dependency_injection.html https://symfony.com/doc/3.4/service_container.html Laravel从5.0开始就引入了这个模式:https://laravel.com/docs/9.x/container 标签 设计模式
By admin, 14 二月, 2022 Figma - 基于Web的协作式UI设计工具 https://www.figma.com/ https://zhuanlan.zhihu.com/p/64356746
By admin, 25 一月, 2022 Merging an upstream repository into your fork git merge https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/merging-an-upstream-repository-into-your-fork
By admin, 20 一月, 2022 2022年广州社保(灵活就业) 基数明细参考:https://cto.eguidedog.net/index.php/node/1155 总额1509.97,个人部分502.18。 2022年1-12月,阶段性降低职工医疗保险和生育保险费率。总额减少33.785元,最终应缴1476.18元。个人部分为471.77元。参考:https://zhuanlan.zhihu.com/p/405072847
By admin, 14 一月, 2022 Drupal 10表格 1. 渲染表格最简单的表格代码如下(如果不知道$form是什么,请先学习examples里的form_api_example) $form['table'] = [ '#type' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => '暂无记录', ];其中$header是表头数组,$rows是每一行数据。2. 排序功能如果我们希望表格能根据表头排序,那么$header可以从简单的一维数组变成复杂的二维数组: 标签 Drupal 10
By admin, 5 一月, 2022 Drupal 9 Services Drupal 9的设计大量依赖于service。sevices的核心是让依赖的逻辑写在初始化阶段,这样可以让实际逻辑大大简化,并且可维护性更好。所有\Drupal的写法都是Drupal对面向过程写法的兼容,被视为违反设计模式。不确定会不会在后续Drupal版本(例如Drupal 10)里不能用。下面是一个在Form里如何用Drupal 9 service的方式实现\Drupal::configFactory()功能的例子。就单一功能来说,例子的写法似乎更复杂了。但就整个复杂的系统来说,这样做是简化了,当我们熟悉了初始化service的方式,那些初始化的代码基本都是复制粘贴的。 1. FormBase和ControllerBase子类引入service的方法 <?php namespace Drupal\utility\Form\SystemConsole\ConfigForm; 标签 Drupal 9
最新评论