刷新整个页面(最low的,可以借助route机制)使用v-if标记(比较low的)使用内置的forceUpdate方法(较好的)使用key-changing优化组件(较好的,定义组件key值) 由于一些嵌套特别深的数据,导致数据更新了,但是页面却没有重新渲染。我遇到的一个情况是,v-for遍历数据渲...
vue v-if 与 v-for 同时使用报错
在Vue中使用v-for循环一个数组/对象时,如果再使用v-if,那么会提示使用计算属性(能正常使用),因为Vue中是不提倡v-for与v-if同时使用的。在我的项目中也遇到了问题不过翻看文档解决了 <el-table-column v-for="(item, index) in columns" :prop="ite...
vue echarts5 热力图不同方格设置颜色 heatmap visualMap
<template> <div class="home"> <div id="main" style="width: 800px; height: 400px"></div> </div> </template> <script> import * as echarts from 'echarts' export default { methods: { drawChart() { cons...
vue el-tabs vue-codemirror初始隐藏,后续点击才显示
this.$refs.jsonEditor.codemirror.refresh() <template> <div class="json-editor"> <codemirror ref="jsonEditor" v-model="reqBody[codeKey]" :options="cmOptions" @ready="onCmReady" @focus="onCmFocus" @input="onCmCodeChange"></codemirr...
vue-codemirror json格式化精度数据丢失 json-bigint
const key = '{"a":1, "b":1.00000000000000000,"key": 1234567890123456789}' const JSONbigString = require('json-bigint')({storeAsString: true}) const withString = JSONbigString.parse(key) console.log('key:', key) console.log('jso...
vue codemirror 取消autoFormatRange后如何做json格式化
方法一:JSON.stringify this.codemirror.setValue((JSON.stringify(JSON.parse(jsonStr), null, 2))) 缺点:这样会造成数值类型值的精度丢失,如: { "a":1.000000000000000000, "b":123455667111111111117 } {a: 1, b: 123455667111111110000} 方法二...
小程序 TLS版本必须大于等于1.2的问题
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\Multi-Protocol Unified...
qiankun 微前端初探
微前端:https://gitee.com/tangweiwei/micro-front-end-qiankun 介绍 qiankun vue react angular 微前端实践,一个基座+多个子应用,每个子应用独立开发、发布,不限技术框架 微前端的价值 1、技术栈无关 主框架不限制接入应用的技术栈,子应用具备完全自主权 2...
python GUI 实践
GUI 实现艺术签名程序 from tkinter import * from tkinter import messagebox import requests import re from PIL import Image, ImageTk # 艺术签名 def sign(): # 获取用户输入 name = input.get() # 去掉空格 name = name.strip() ...
python 之爬虫开发实践
下载视频图片 import requests import re import os from urllib.request import urlretrieve # 下载视频 def downloadVideoImg(): host = 'https://www.pearvideo.com/' headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x6...