书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 6709 个相关结果.
  • 5.10 表关联操作

    5.10 表关联操作 5.10 表关联操作 JFinal ActiveRecord 天然支持表关联操作,并不需要学习新的东西,此为无招胜有招。表关联操作主要有两种方式:一是直接使用sql得到关联数据;二是在Model中添加获取关联数据的方法。 假定现有两张数据库表:user、blog,并且user到blog是一对多关系,blog表中使用user_i...
  • 7.3 CacheInterceptor

    7.3 CacheInterceptor 7.3 CacheInterceptor CacheInterceptor可以将action所需数据全部缓存起来,下次请求到来时如果cache存在则直接使用数据并render,而不会去调用action。此用法可使action完全不受cache相关代码所污染,即插即用,以下是示例代码: @Before ...
  • Using a Theme

    805 2020-03-09 《Gatsby.js Tutorials》
    Using a Theme Create a new site using the blog theme starter Run the site Replace your avatar Update your site metadata Replace the content of the bio Add your own blog conten...
  • Integrating a third-party application

    Integrating a third-party application Integrating a third-party application We’ve already written our own django CMS plugins and apps, but now we want to extend our CMS with a t...
  • Props

    Props Prop Types Passing Static or Dynamic Props Passing a Number Passing a Boolean Passing an Array Passing an Object Passing the Properties of an Object One-Way Data Flow ...
  • app.path

    app.path() 通过这个方法可以得到app 典型的路径,其是一个string 。 var app = express () , blog = express () , blogAdmin = express (); app . use ( '/blog' , blo...
  • 第5章 Doctrine

    1561 2019-03-10 《Symfony2实例教程》
    Doctrine 关于Doctrine 数据库配置 创建数据库模型 新建控制器 添加测试数据 Doctrine 这一章将介绍Symfony2的数据库操作。在Symfony2中默认使用的ORM库是Doctrine。 关于Doctrine Doctrine是一个专门用于处理数据库操作的ORM库,关于ORM的介绍请参考: http://zh...
  • Router radixtree

    Router radixtree what’s libradixtree? How to use libradixtree in APISIX? 1. Full match 2. Prefix matching 3. Match priority 4. Different routes have the same uri 5. Parameter...
  • Router radixtree

    Router radixtree what’s libradixtree? How to use libradixtree in APISIX? 1. Full match 2. Prefix matching 3. Match priority 4. Different routes have the same uri 5. Parameter...
  • 加载关联数据

    加载关联数据 贪婪加载 多级包含 忽略包含 显式加载 查询关联实体 延迟加载 关联数据和序列化 加载关联数据 Entity Framework Core 允许你在模型中使用导航属性来下载关联的实体。加载关联数据有三种通用的 O/RM 模式。 贪婪加载 意味着关联数据会作为初始查询的一部分从数据库加载 显式加载 意味着关联数据会在...