Vue中web3js的使用 区块链网络是一个点对点的对等网络,网络由各个节点相互连接构成,智能合约的代码与数据存储在区块链中。使用web3.js可以向区块链网络中某个以太坊节点发出请求,与区块链网络进行交互。1、引入web3.min.js 和 bignumber.min.js<script src="/assets/diy/js/web3.min.js"> javascript 2022年03月14日 4 点赞 0 评论 3937 浏览
HighLightJS使用:markdown编辑器代码高亮 官网https://highlightjs.org/引入使用 <link href="/diy_static/css/highlightcss/default-dark.min.css" rel="stylesheet"> <script src="/ javascript 2022年01月14日 1 点赞 0 评论 3071 浏览
layui常用弹窗 layui常用弹窗 layer.alert('内容'); layer.alert('内容', { icon: 1, skin: 'layer-ext-moon' //该皮肤由layer.seaning.com javascript 2022年01月14日 1 点赞 0 评论 2696 浏览
layui:layer右下角弹窗提醒 1、自定义弹窗样式利用定位使弹窗位于右下角.layui-layer-demo{ position: fixed; top: 72% !important; left: 80% !important;}2、弹出层content: ‘url’ 有滚动条content: [‘url’, ‘no’] 无滚动条layer.open({ javascript 2022年01月14日 2 点赞 0 评论 2933 浏览
JS常用操作 1、格式化日期时间function getCurrentDate(format = 2) { var now = new Date(); var year = now.getFullYear(); //得到年份 var month = now.getMonth();//得到月份 var date = now.getDate();//得到日期 javascript 2021年11月08日 0 点赞 0 评论 2530 浏览
宝塔面板一个网站绑定两个域名配置SSL 宝塔面板一个网站绑定两个以上的域名配置SSL1、比如a.com b.com c.com 同时绑定一个网站2、申请证书,获取pem、key3、开启a.com 的ssl4、点击左侧配置文件<VirtualHost *:80> ServerAdmin webmaster@example.com DocumentRoot "/www/wwwroot/test.com/publ javascript 2021年10月19日 2 点赞 0 评论 2426 浏览
使用easywechat生成小程序码 1、安装easywechat2、使用 $path = '/pages/index/index'; $config = [ 'app_id' => 'wxb5axxxx', 'secret' => 'XXXX', javascript 2021年10月19日 0 点赞 0 评论 2394 浏览
uniapp 微信小程序 保存图片到本地 先下载,再保存uni.downloadFile({ url, success: (res) =>{ if (res.statusCode === 200){ uni.saveImageToPhotosAlbum({ filePath: res.tempFilePath, javascript 2021年10月19日 0 点赞 0 评论 2405 浏览
fastadmin 使用 topthink/img 压缩、裁剪、加水印、处理图片 1、安装composer require topthink/think-image2、使用(application/admin/controller/Ajax.php)在fastadmin中上传文件的公用方法中使用思路:可以添加上传参数type,系统会根据type选择不同的方式处理图片 $new_file_name = ''; if (in_array javascript 2021年10月19日 0 点赞 0 评论 2378 浏览
Editor.md基本使用和图片上传 editor.md是一款markdown编辑器官网 https://pandao.github.io/editor.md/1、代码<!DOCTYPE html><html lang="zh"> <head> <meta charset= javascript 2021年10月19日 0 点赞 0 评论 2435 浏览