获取原生的DOM的方式 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script src="../vue-router.js"></scr ...
分类:
Web程序 时间:
2021-06-19 18:51:18
阅读次数:
0
requests安装 pip install requests requests模拟get请求 response.content 是二进制模式,通常需要转换成UTF-8模式,否则会乱码 #requests模拟get请求、 import requests response=requests.get(' ...
分类:
其他好文 时间:
2021-06-19 18:49:51
阅读次数:
0
前端开发中经常用到webpack常用的sass-loader、style-loader、css-loader等loader,总是记不住其区别和作用。今特记录、以备查询 1.node-sass其实之所以用到node-sass、是因为sass-loader的缘故。sass-loader 是将sass文件 ...
分类:
Web程序 时间:
2021-06-19 18:48:12
阅读次数:
0
在实现分库分表的情况下,数据库自增主键已经无法保证在集群中是全局唯一的主键了,因此mycat提供了全局的sequence,并且提供了本地配置、数据库配置等多种实现方式。 1. 本地文件方式 采用该方式,mycat将sequence配置到classpath目录的sequence_conf.proper ...
分类:
其他好文 时间:
2021-06-19 18:40:35
阅读次数:
0
const target = { a: 1, b: 2 }; const source = { b: 4, c: 5 }; const returnedTarget = Object.assign(target, source); console.log(target); // expected o ...
分类:
其他好文 时间:
2021-06-18 19:49:36
阅读次数:
0
及时渲染视图的方法 有时候遇到给一个数组或者对象添加值或修改值,页面并不会及时渲染出修改过的数据,这时可以实用this.$set来解决这个问题 在使用this.$set(target, key, value)时,target为需要添加属性的对象,key是要添加的属性名,value为属性key对应的值 ...
分类:
其他好文 时间:
2021-06-18 19:35:53
阅读次数:
0
Terminology “promise” is an object or function with a then method whose behavior conforms to this specification. “thenable” is an object or function t ...
分类:
其他好文 时间:
2021-06-18 19:35:32
阅读次数:
0
一、简介 基于matlab GUI二维条形码的识别 二、源代码 function varargout = untitled(varargin) % UNTITLED M-file for untitled.fig % UNTITLED, by itself, creates a new UNTITL ...
分类:
其他好文 时间:
2021-06-18 19:32:36
阅读次数:
0
1 #显示跑马灯文字 2 import os 3 import time 4 def main(): 5 content = str(input('输入显示内容:')) 6 while True: 7 os.system('cls') 8 print(content) 9 time.sleep(0. ...
分类:
其他好文 时间:
2021-06-18 19:20:19
阅读次数:
0
要使能NFS server的功能,其实在petalinux中即可配置。 ...
分类:
系统相关 时间:
2021-06-18 19:17:50
阅读次数:
0