09 2022 档案
摘要:一、创建用户 在阿里云创建用户https://ram.console.aliyun.com/users,并勾选Open API 保存好信息,很重要,返回后就再也找不到了 新增授权(这里视个人情况,需要遵循权限最小化原则,以确保安全) 设置OSS跨域 设置跨域,这个位置不必多说应该也找得到 点击后一直
阅读全文
摘要:main.js import axios from 'axios' Vue.prototype.$http = axios Test.vue <template> <div class="common-box"> </div> </template> <script> export default
阅读全文
摘要:sudo apt install libjpeg62-turbo-dev libfreetype6-dev -y su -c "docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg" su -c "docker-php
阅读全文
摘要:<?php use ZipArchive; class Zip { /** * @var array $files 需要压缩的文件或文件夹 */ public $files = []; /** * 排除的文件 */ public $notFile = []; /** * 压缩或者解压密码 */ pu
阅读全文