书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 7023 个相关结果.
  • 数据库配置

    数据库配置 数据库配置 数据表定义 ES6 方式 动态创建类方式 修改主键 分布式数据库 数据库配置 数据库配置 数据库默认配置如下,可以在 src/common/config/db.js 中进行修改: export default { type : 'mysql' , log_sql : true...
  • REST API

    REST API 创建 REST API 处理 REST API 请求 请求类型 字段过滤 权限管理 更多定制 REST API 项目中,经常要提供一个 API 供第三方使用,一个通用的 API 设计规范就是使用 REST API。REST API 是使用 HTTP 中的请求类型来标识对资源的操作。如: GET /ticket #获取...
  • Part 20 – ADC

    Part 20 – ADC Part 20 – ADC For a complete table of contents of all the lessons please click below as it will give you a brief of each lesson in addition to the topics it will ...
  • 连接数据库

    一、配置文件定义 连接参数 二、方法配置 三、模型类定义 配置参数参考 ThinkPHP内置了抽象数据库访问层,把不同的数据库操作封装起来,我们只需要使用公共的Db类进行操作,而无需针对不同的数据库写不同的代码和底层实现,Db类会自动调用相应的数据库驱动来处理。采用PDO方式,目前包含了Mysql、SqlServer、Pg...
  • How to Use Source Code Control

    How to Use Source Code Control How to Use Source Code Control Source code control systems (also known as Version Control Systems) let you manage projects effectively. They’re v...
  • The Professional Programmer

    The Professional Programmer The Professional Programmer What is a professional programmer? The single most important trait of a professional programmer is personal responsibil...
  • Wrapping Up Architectures

    587 2021-03-31 《The fastai book》
    Wrapping Up Architectures Wrapping Up Architectures As you can see, the details of deep learning architectures need not scare you now. You can look inside the code of fastai an...
  • 项目结构

    项目结构 项目结构 LinCMS-TP5的目录结构遵循了ThinkPHP官方原生的tp5.1结构,如果你使用过TP5.0后者TP5.1那么对这个目录结构会很熟悉。 如果你没接触过那也不要紧,可以参考下面的示例或者查看ThinkPHP5.1完全开发手册 了解更多 www WEB 部署目录(或者子目录) ├─ application ...
  • 数据库配置

    数据库配置 数据库配置 数据表定义 ES6 方式 动态创建类方式 修改主键 分布式数据库 数据库配置 数据库配置 数据库默认配置如下,可以在 src/common/config/db.js 中进行修改: export default { type : 'mysql' , //数据库类型 host :...
  • 推荐编码规范

    推荐编码规范 命名规范 语法规范 书写规范 参考 推荐编码规范 下面是 Cocos Creator 开发团队使用的编码规范,收录在手册里以供游戏开发者和工具开发者参考。 命名规范 当我们为变量, 函数和实例命名时, 使用 camelCase 命名法. // bad var FOOBar = {}; var fo...