书栈网 · BookStack 本次搜索耗时 0.034 秒,为您找到 6709 个相关结果.
  • Gin实践 连载四 搭建Blog API’s(三)

    7095 2018-09-04 《Golang Gin 实践》
    编写Article的API’s、Models 定义接口 编写路由逻辑 编写models逻辑 验证功能 参考 本系列示例代码 编写Article的API’s、Models 项目地址:https://github.com/EDDYCJY/go-gin-example 定义接口 本节编写文章的逻辑,我们定义一下接口吧! 获取文章列表...
  • Blogs and case studies

    Submitting blog posts and case studies The Kubernetes Blog Submit a Post Guidelines and expectations Technical Considerations for submitting a blog post Submit a case study ...
  • Blogs and case studies

    Submitting blog posts and case studies The Kubernetes Blog Submit a Post Guidelines and expectations Technical Considerations for submitting a blog post Submit a case study ...
  • 域名路由

    动态注册 泛域名部署 配置定义方式 域名绑定地址 绑定到命名空间 绑定到类 绑定到闭包函数 绑定路由规则 ThinkPHP支持完整域名、子域名和IP部署的路由和绑定功能,同时还可以起到简化URL的作用。 要启用域名部署路由功能,首先需要开启: 'url_domain_deploy' => true 定义域名部署规则支...
  • 传递静态或动态 Prop

    传递静态或动态 Prop 传入一个数字 传入一个布尔值 传入一个数组 传入一个对象 传入一个对象的所有属性 传递静态或动态 Prop 像这样,你已经知道了可以像这样给 prop 传入一个静态的值: <blog-post title = "My journey with Vue" ></blog-post> 你也知道 prop ...
  • Ext JS Ecosystem

    Ext JS Ecosystem Unit Testing Best Practices Debugging Platform Integration IDE Support Ext JS Ecosystem Ext JS has a rich ecosystem of components, tools, and other resourc...
  • Template extending

    Template extending Create a base template Template extending Another nice thing Django has for you is template extending . What does this mean? It means that you can use the s...
  • 5.10 表关联操作

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

    路由分组 路由分组 路由分组功能允许把相同前缀的路由定义合并分组,这样可以提高路由匹配的效率,不必每次都去遍历完整的路由规则。 例如,我们有定义如下两个路由规则的话 'blog/:id' => [ 'Blog/read' , [ 'method' => 'get' ], [ 'id' => '\d+' ]], ...
  • Homework: create comment model

    Homework: create comment model Creating comment blog model Create tables for models in your database Register Comment model in admin panel Make our comments visible Let your re...