Laravel5 Eloquent 模型一对一连表查询

因过度使用 thinkphp5 而导致的思维固化,特此记录使用 larvavel5 Eloquent 模型一对一连表查询方式在 app/Http/Models 目录下新建一个 Student.php 文件,并写入以下代码<?php namespace App\Http\Models; use Illuminate\Database\Eloquent\Model; class Student extends Model { &nbs
查看全文

packagist 带 .git 目录

问题一:https://segmentfault.com/q/1010000010138423/问题二:https://www.oschina.net/question/878142_164873?fromerr=5jqHWmFg博主的解决方法:不要使用 gitee 托管源码,用 github 并且发布稳定版后即可解决该问题!如何发布稳定版?请移步至下面的链接https://blog.csdn.net/hellokandy/article/details/84553353
查看全文

Electron 入门应用打包 exe

2019年11月07日更新:原 Demo 代码有 Bug,现已替换其他可用 Demo一、安装开发环境步骤 1:下载 node.js步骤 2:设置中国镜像$ npm config set ELECTRON_MIRROR https://npm.taobao.org/mirrors/electron/步骤 3:下载 Electron$ npm install -g electron步骤 4:下载&nb
查看全文