laravel 关联模型 多态关系 一对一(多态) note 1个关联上从属于多个模型,如:博客post和用户user共享1个关联图片image。 1篇博客拥有1张主图 1个用户拥有1个头像 graph LR image(图片) image --> |imageable_id=post.id<br> ...
分类:
其他好文 时间:
2020-07-08 19:57:33
阅读次数:
52
==打开保护模式== protected-mode yes ==修改默认6379端口== port 8793 ==禁用或者重命名危险命== 修改 redis.conf 文件,添加 rename-command FLUSHALL "" rename-command FLUSHDB "" rename- ...
分类:
其他好文 时间:
2020-07-08 19:38:11
阅读次数:
126
1 包对象 基本介绍:包可以包含类、对象和特质trait,但不能包含函数/方法或变量的定义。这是Java虚拟机的局限。为了弥补这一点不足,scala提供了包对象的概念来解决这个问题。 package com.atguigu { //每个包都可以有一个包对象。你需要在父包(com.atguigu)中定 ...
分类:
其他好文 时间:
2020-07-07 17:44:36
阅读次数:
61
引用NuGet包 OpenHtmlToPdf 1 protected void btnExportPDF_Click(object sender, EventArgs e) 2 { 3 using (WebClient wc = new WebClient()) 4 { 5 wc.Encoding ...
分类:
Web程序 时间:
2020-07-07 15:32:59
阅读次数:
93
接着AbstractApplicationContext.refresh方法:initApplicationEventMulticaster,该方法用来初始化事件广播器,流程如下: protected void initApplicationEventMulticaster() { // 获取Bea ...
分类:
编程语言 时间:
2020-07-07 15:27:54
阅读次数:
80
修饰符 当前类 同一包内 子孙包内(同一包) 子孙包类(不同包) 其他包 public Y Y Y Y Y protected Y Y Y Y/N N default Y Y Y N N private Y N N N N private修饰的只可在本类中被访问。 默认访问修饰符 - 不适用任何关键 ...
分类:
编程语言 时间:
2020-07-07 13:13:21
阅读次数:
58
( 1 )对于外部类而言,它也可以使用访问控制符修饰,但外部类只能有两种访问控制级别: public 和默认。因为外部类没有处于任何类的内部,也就没有其所在类的内部、所在类的子类两个范围,因此 private 和 protected 访问控制符对外部类没有意义。 ( 2 )内部类的上一级程序单元是外 ...
分类:
其他好文 时间:
2020-07-07 13:11:21
阅读次数:
58
Internal Logging If you have trouble getting NLog to work properly you may want to enable internal logging, which can help identify where the problem ...
分类:
其他好文 时间:
2020-07-06 12:57:16
阅读次数:
65
单例模式 单个实例,实例就是对象。限制类只能有一个对象。 class Danli{ // 私有化构造方法,禁止外部实例化对象 private function __construct(){} // 私有化属性 private static $_instance; // 禁止外部克隆 private ...
分类:
Web程序 时间:
2020-07-05 23:25:47
阅读次数:
148
参考代码: protected void Page_Load(object sender, EventArgs e) { if (this.IsPostBack == true) { int row = int.Parse(Request.Form["RowNum"]); int col = int ...
分类:
Web程序 时间:
2020-07-05 15:34:44
阅读次数:
81