书栈网 · BookStack 本次搜索耗时 0.047 秒,为您找到 135294 个相关结果.
  • 匿名字段

    1902 2020-06-11 《Go语言中文文档》
    1. 接口 1. 接口 go支持只提供类型而不写字段名的方式,也就是匿名字段,也称为嵌入字段 package main import "fmt" // go支持只提供类型而不写字段名的方式,也就是匿名字段,也称为嵌入字段 //人 type Person struct { name...
  • 匿名字段

    1157 2020-06-11 《Go语言中文文档》
    1. 匿名字段 1. 匿名字段 Golang匿名字段 :可以像字段成员那样访问匿名字段方法,编译器负责查找。 package main import "fmt" type User struct { id int name string } type Manager ...
  • 面板字段参考

    面板字段参考 main (String) type (String) title (String) icon (String) resizable (Boolean) width (Integer) height (Integer) min-width (Integer) min-height (Integer) max-width (In...
  • 表单字段

    表单字段 核心字段参数 required label label_suffix initial widget help_text error_messages validators localize disabled 检查字段数据是否有变化 has_changed() 内置 Field 类 BooleanFi...
  • 模型字段参考

    模型字段参考 字段选项 null blank choices 枚举类型 db_column db_index db_tablespace default editable error_messages help_text primary_key unique unique_for_date unique_...
  • 查询部分字段

    查询部分字段 查询部分字段 如果只想选择实体的某些属性,可以使用以下语法: const users = await getRepository ( User ) . createQueryBuilder ( "user" ) . select ([ "user.id" , "user.name" ]) . g...
  • 面板字段参考

    面板字段参考 main (String) type (String) title (String) icon (String) resizable (Boolean) width (Integer) height (Integer) min-width (Integer) min-height (Integer) max-width (In...
  • 面板字段参考

    面板字段参考 main (String) type (String) title (String) icon (String) resizable (Boolean) width (Integer) height (Integer) min-width (Integer) min-height (Integer) max-width (In...
  • 10.20 静态字段

    786 2019-03-05 《Kotlin极简教程》
    静态字段 静态字段 Kotlin中在命名对象或伴生对象中声明的属性: class Department { ... companion object { var innerID = "X001" @JvmField var inner...
  • 10.19 实例字段

    759 2019-03-05 《Kotlin极简教程》
    实例字段 实例字段 我们使用 @JvmField 注解对Kotlin中的属性字段标注,表示这是一个实例字段(Instance Fields),Kotlin编译器在处理的时候,将不会给这个字段生成getters/setters方法。 class Department { var id : Long = - 1L...