简单实用小工具

news/2024/7/10 0:34:35 标签: js, vue, json

简单实用小工具

基于html 单体vue+iview实现简单页面,内容包含 ws连接测试,json格式校验,json内容格式化 几类小工具

<html>
	<head>
		<!-- import Vue.js -->
		<script type="text/javascript" src

http://www.niftyadmin.cn/n/775978.html

相关文章

IView在非Rander模式下使用标签转换

IView在非Rander模式下使用标签转换 1.需要转换组件名(特殊组件) rander模式非rander模式DatePickerdate-pickerFormItemform-itemCheckboxGroupcheckbox-groupInputNumberinput-number 2.常用组件(常规组件) rander模式非rander模式Buttoni-buttonColi-colTablei-tableInpu…

JVM状态监控

JVM状态监控 监控工具 jconsole java提供的原生图形化工具,使用简单.大部分内容可以看到.可以很直接的查看到jvm的堆内存使用,线程使用,类装载以及cpu的使用情况 直接window运行,输入jconsole就可以启动工具 jvisualvm jvisualvm也是java提供的原生图形化界面.这个工具比jco…

自定义springcloudFeign配置

自定义springcloudFeign配置 自定义配置类 package com.wmang.web.common.config;import feign.Feign; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.web.servlet.WebMvcRegistrations; impor…

IDEA插件-SequenceDiagram

IDEA插件-SequenceDiagram 1.直接在plugins里面搜索SequenceDiagram 如果没有搜索到请看第二步 2.直接去官网插件下载 地址: https://plugins.jetbrains.com/plugin/8286-sequencediagram/versions

Spring获取bean工具类

Spring获取bean工具类 spring获取bean方法封装. 通用工具类 package com.sample.service.client.serviceclient.util;import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.Applicat…

动态创建定时任务

动态创建定时任务 定时任务基类 定时任务封装基类.减少代码量.基类处理定时任务框架,业务类只需集成.然后实现业务逻辑即可. public class BaseSingleThreadTask {protected ScheduledFuture schedule(long initialDelay, long intervalTime, String taskNames, Callable call…

Mysql 关键字及保留字

Mysql 关键字及保留字 Table 10.2 Keywords and Reserved Words in MySQL 5.7 ACCESSIBLE ACCOUNT[a]ACTIONADD AFTERAGAINSTAGGREGATEALGORITHMALL ALTER ALWAYSANALYSEANALYZE AND ANYAS ASC ASCIIASENSITIVE ATAUTOEXTEND_SIZEAUTO_INCREMENTAVGAVG_ROW_LENGTHBACKUPBEFOR…

全局唯一编码ID生成器

全局唯一编码ID生成器 package com.util;import java.lang.management.ManagementFactory; import java.net.NetworkInterface; import java.nio.BufferUnderflowException; import java.nio.ByteBuffer; import java.security.SecureRandom; import java.util.Enumeration;im…