书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 7023 个相关结果.
  • 多级控制器

    新版支持任意层次级别的控制器,并且支持路由,例如: namespace app\index\controller\one ; use think\Controller ; class Blog extends Controller { public function index () ...
  • Reporting Bugs

    Reporting Bugs Product bugs Kubernetes cluster state archives Documentation bugs Reporting Bugs Oh no! You found a bug? We’d love to hear about it. Product bugs Search ou...
  • 分层控制器

    访问控制器 分层控制器 访问控制器 ThinkPHP引入了分层控制器的概念,通过URL访问的控制器为访问控制器层(Controller)或者主控制器,访问控制器是由\think\App 类负责调用和实例化的,无需手动实例化。 URL解析和路由后,会把当前的URL地址解析到 [ 模块/控制器/操作 ],其实也就是执行某个控制器类的某个操作方法,下面...
  • Avoid Apis From Prehistory

    Avoid APIs from Pre-History Summary Details Avoid APIs from Pre-History Summary Do not use Vector , StringBuffer and other archaic parts of the JDK. Details Java has be...
  • Hoisting: Yet Another Metaphor

    Hoisting: Yet Another Metaphor Hoisting: Yet Another Metaphor Chapter 2 was full of metaphors (to illustrate scope), but here we are faced with yet another: hoisting itself. Ra...
  • 控制器

    控制器 定义控制器 使用 Generator Function ES6 方式 动态创建类的方式 使用 async/await ES7 方式 动态创建类的方式 init 方法 ES6 方式 动态创建类方式 前置操作 __before ES6 方式 Action 后置操作 __after 空操作 __call 错误处理 数据校验...
  • Cache

    Cache 缓存类型 缓存配置 使用缓存 扩展缓存 使用第三方缓存 Adapter Cache 在项目中,合理使用缓存对性能有很大的帮助。ThinkJS 提供了多种的缓存方式,包括:内存缓存、文件缓存、Memcache 缓存、Redis 缓存等。 缓存类型 系统默认支持的缓存类型如下: memory 内存缓存 file 文件缓存...
  • 常见问题

    常见问题 为什么推荐 ES6/7 语法开发项目 开发时,修改文件需要重启服务么? 怎么修改视图文件目录结构 如何开启多进程 修改请求超时时间 如何捕获异常 如何忽略异常 PREVENT_NEXT_PROCESS 并行处理 如何输出图片 常见问题 为什么推荐 ES6/7 语法开发项目 ES6/7 里提供了大量的新特性,这些特性会...
  • 生成配置缓存文件

    生成配置缓存optimize:config 生成配置缓存optimize:config 可以为应用或者模块生成配置缓存文件 php think optimize : config 默认生成应用的配置缓存文件,调用后会在runtime 目录下面生成init.php 文件,生成配置缓存文件后,应用目录下面的config.php common....
  • 资源控制器

    资源控制器可以让你轻松的创建RESTFul 资源控制器,可以通过命令行生成需要的资源控制器,例如: // 生成index模块的Blog资源控制器 php think make : controller index / Blog 或者使用完整的命名空间生成 php think make : controller app\index\cont...