摘要: <template> <div class="form-box"> <el-form :model="form" :rules="rules" ref="ruleForm" label-width="100px" class="demo-studentForm"> <el-form-item lab 阅读全文
posted @ 2023-03-10 11:00 HelpYourself! 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 概述OpenLayers 使在任何网页中放置动态地图变得容易。它可以显示从任何来源加载的地图图块、矢量数据和标记。OpenLayers 的开发旨在进一步使用各种地理信息。它是完全免费的开源 JavaScript官网 https://openlayers.org/ 1、下载依赖 npm i ol -S 阅读全文
posted @ 2023-02-28 15:10 HelpYourself! 阅读(488) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="Writing"> <div class="writing_top"> <button id="button" @click="changeValue('00-15-5D-10-82-1E', value1 ? 102 : 101 )" :disable 阅读全文
posted @ 2023-02-28 13:47 HelpYourself! 阅读(263) 评论(0) 推荐(0) 编辑
摘要: /* Akamai version 1.7 grabbed from YeezySupply(Akamai 1.7 版来自 YeezySupply) */ var _cf = _cf || [], /** * @namespace * @version 1.7 * @property {string 阅读全文
posted @ 2022-05-28 13:18 HelpYourself! 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 这是因为框架链接mongodb没有指定database 到目录下 vendor/topthink/think-orm/src/db/connector/Mongo.php下修改 if (empty($config['dsn'])) { $config['dsn'] = 'mongodb://' . 阅读全文
posted @ 2022-03-01 09:43 HelpYourself! 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 一.安装ES 1. curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.2-linux-x86_64.tar.gz 2. tar -xvf elasticsearch-7.6.2-linu 阅读全文
posted @ 2022-01-20 17:42 HelpYourself! 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 前言Mysql授权允许远程登录后,linux中安装的mysql可以与Navicat for Mysql(可视化)等连接,在可视化软件下管理数据库。注意:不能使用临时密码设置密码命令: alter user 'root'@'localhost' identified by '这里是你的密码';1授权允 阅读全文
posted @ 2021-12-25 10:58 HelpYourself! 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Thinkphp6模型事件类似于Vue的钩子函数,方便我们在增、删、查、改这个时间段进行操作 模型事件 首先,从手册上,我们可以知道模型支持以下事件: 事件描述事件方法名 after_read 查询后 onAfterRead before_insert 新增前 onBeforeInsert afte 阅读全文
posted @ 2021-09-28 15:37 HelpYourself! 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: 最近项目中使用clipboard.js做点击复制的功能,封装了一个小组件,发现在dialog中失效 翻看文档发现这样一句话 文档地址:空白目录 · clipboard.js中文文档 · 看云 (kancloud.cn) 原因就是弹出框会自动focus,而复制的底层实现是要获取选中的内容,失去焦点后就 阅读全文
posted @ 2021-08-06 14:09 HelpYourself! 阅读(392) 评论(0) 推荐(0) 编辑
摘要: think-queue 安装 composer require topthink/think-queue我们需要在安装好的 think-queue > src 下找到 config.php 复制里面的内容,然后在根目录下 config 目录下创建 queue.php文件,将复制的内容粘贴进去 <?p 阅读全文
posted @ 2021-07-28 18:03 HelpYourself! 阅读(442) 评论(0) 推荐(0) 编辑