摘要:
简单封装PhpSpreadsheet,实现PHP快速导入、导出xlsx <?php namespace xfstu\tools; use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Writer\Xlsx; u 阅读全文
摘要:
背景 在APP中,跳转页面需要判断是否有权限跳转,比如是否登录。开发环境是TMUI+VUE3+TS,这难免有一些限制,在网上搜索后,发现简书网站有个博主写的链接正合我意,不过他的是JavaScript+uniapp原生开发,根据我的需求,自己稍微改了些。 0x01 复制代码 简书博客链接:https 阅读全文
摘要:
2024-05-28更新 推荐使用这个工具实现操作redis:https://doc.hutool.cn 0x01依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-d 阅读全文
摘要:
0x01 查看硬盘 lsblk 0x02 查看挂载信息 df -h 0x03 挂载 sudo mount /dev/sdb1 /data 0x04 卸载 sudo umount /dev/sdb1 0x05 target is busy. 可能是在挂载的路径,这样可以cd /退出占用,然后卸载设备u 阅读全文
摘要:
一、vue.js <template> <div class="common-box"> <el-upload class="upload-demo" drag :action="data.host" multiple :auto-upload="false" ref="upload" :data= 阅读全文
摘要:
```javascript // 获取选中的节点 const checkedNodes = this.$refs.rolePermissionsTree.getCheckedNodes(false, true) // 获取选中节点的所有父级节点 checkedNodes.forEach(node = 阅读全文
摘要:
json格式 {"uid":"root","role":[1,3,7]} controller @PostMapping("/add") public Object AddRole(@RequestBody String post) { JSONObject jsonObject = new JSO 阅读全文
摘要:
#注意,此操作有风险,请备份代码后再执行,由此产生的问题由自己负责 ```text git checkout --orphan latest_branch git add -A git commit -am "commit message" git branch -D main git branch 阅读全文
摘要:
```php $str = ''; for ($i = 0; $i < 1000100; $i++) { $str .= uniqid() . PHP_EOL; } return file_put_contents('1.log', $str); ``` ![](https://img2023.cn 阅读全文
摘要:
心血来潮,搭了三套环境:php-thinkphp5.1、php-laravel、java-spring boot web 以下是thinkphp VS spring boot web ![](https://img2023.cnblogs.com/blog/1801436/202306/180143 阅读全文