ICode9

精准搜索请尝试: 精确搜索
  • rollup node-resolve插件 + babel-node用法讲解2022-07-08 01:00:06

    配置rollup插件 rollup-plugin-node-resolve 用途:解决依赖安装问题,让node支持ESM规范 @babel/node与@babel/core 用途: 支持在node中使用ES6,使用后将es6代码转换为es5代码,需要全局安装 tree-shaking机制 使用export导出的模块,如果没有被使用到,哪怕是导入了,打包时也会被tree-shaking

  • vue中常用的几种import(模块、文件)引入方式,export,export default,全部/部分文件的导出/导入2022-07-07 17:01:09

    一,import(模块、文件)引入方式 1 引入第三方插件 import echarts from 'echarts' 2.导入 css文件 import 'iview/dist/styles/iview.css'; 如果是在.vue文件中那么在外面套个style 3.导入组件 import name1 from './name1' import name2 from './name2' components:{ name1

  • useContext配合React.createContent实现传统redux功能2022-07-06 10:13:43

    在以往的redux中要实现数据共享需要配置文件例如配置redux中的reducer和action文件以及根文件 在一个组件中还需要将配置的文件利用connect进行链接,对于一些项目来说这些显得略微的复杂: 就比如是实现一个对count值的改变功能:就需要: Action文件: import {ADD_COUNT,SUB_COUNT}

  • m1 安装 java2022-07-05 16:01:06

        brew install java ==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/manifests/18.0.1.1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/blobs/sha25

  • vue文件流下载实例2022-07-04 17:34:42

    场景描述: 前端请求接口,接口的response返回为文件流,前端进行下载 1、定义触发按钮 <el-button type="success" @click="export()">导 出</el-button> import { export } from '@/views/request.js';    2、定义接口请求:请求时需要加入responseType 为blob,对文件流 进行转换

  • JS to export subtitles from VEED2022-07-03 01:34:50

    JS to export subtitles from VEED - Online Video Editor - Video Editing Made Simple   var subtitles = document.getElementsByClassName('TextEditorStyled__Group-sc-nw7y0k-5 dDCwC'); let srcs = ""; for(var i = 0; i < subtitles.length;

  • ccache安装配置2022-07-03 01:31:06

    1.安装 sudo apt-get install ccache 2.使用 ccache -s # 显示状态参数 (s是英语status的缩写,表示《状态》) ccache -C # 清除缓存(C是大写的,是英语Clear的缩写,表示《清除》) 3.配置 vim ~/.bashrc export NDK_CCACHE = ccache export CCACHE_DIR = ~/.ccache # (目录随便

  • 数据库同步2022-07-02 20:05:18

    各大数据库同步方案都不同,以下分别介绍SQLServer、MySql、Postgres的方法。 SQLServer数据库同步方法: sqlserver发布订阅方式需要用实际的服务器名称,不能使用服务器的IP地址进行。能发布的信息包括【表】、【存储过程】、【用户函数】如果使用IP会有错误,如下图: 具体发布过程如下:

  • Shell 脚本2022-06-30 11:00:27

    shell    命令行解释器  接受应用程序用户命令,调用操作系统的内核   编写  调试  灵活 export my_var  提升  变成全局变量 readonly    只读变量     unset   撤销 set|  less  展示 expr i+2   算数运算符 $ (())   $[ ]   计算符 test   判断   

  • ES6中的as的基本使用2022-06-29 21:34:21

    在 ES6 中,as 关键字用于修改变量名 配合 export 使用 有时候我们不想暴露模块中的变量名称,就可以给模块取一个更加语义化的名称 let a = function (name) { console.log(name) } export { a as printName } 配合 import 使用 当我们需要一次性导入模块的全部变量时,就可以

  • Linux环境下安装Oracle2022-06-28 19:02:25

    本例操作系统版本:CentOS 7.9、数据库版本:Oracle 19c(12.203) 本文部分配置参考https://www.cnblogs.com/xuzhaoyang/p/11264557.html   1.安装依赖 yum install -y elfutils* gcc* glibc* libaio* libgcc* libgomp* libstdc* libstdc++-devel* sysstat unixODBC* *libcap* libXp*

  • Ubuntu 使用idea 2022.1.3中文失效2022-06-28 16:37:17

    首先,亲测有效,但是只使用了ibus,所以建议使用ibus; 1.去IDEA的bin目录下的idea.sh文件的前面加上: # 如果是 Fcitx export XIM="fcitx" export XIM_PROGRAM="fcitx" export XMODIFIERS="@im=fcitx" export GTK_IM_MODULE="fcitx" export QT_IM_MODULE="fcitx"

  • Linux 安装Go 1.182022-06-27 22:31:11

    linux 下载安装 go1.18(1)下载wget https://dl.google.com/go/go1.18.3.linux-amd64.tar.gz (2)解压文件到新版本文件夹 (这里可以替换为你想要的目录)sudo tar -zxvf go1.18.3.linux-amd64.tar.gz -C /usr/local (3)修改环境变量为新版本 vim /etc/profile #根目录(这里可以替换

  • 数据库(Oracle 11g)使用expdp每周进行数据备份并上传到备份服务器2022-06-27 15:32:40

    1.看看数据库情况 1.1先看了下表空间情况,生产环境表空间大概90G,用了才一半不到 查看所有表空间及使用情况 SELECT   B.FILE_NAME 物理文件名,   B.TABLESPACE_NAME 表空间名称,   B.BYTES/1024/1024 大小M,   (B.BYTES-SUM(NVL(A.BYTES,0)))/1024/1024 已使用M,   SUBS

  • shell脚本中的export和PWD的作用2022-06-27 15:03:45

    目录shell脚本中的export和PWD的作用 shell脚本中的export和PWD的作用 本文内容摘录自https://blog.csdn.net/j_bean/article/details/78600511,仅作记录使用非原创。 (1)export 功能说明:设置或显示环境变量。 ​ 语法:export [-fnp][变量名称]=[变量设置值]。 ​ 补充说明:

  • 组件通讯的方式有哪些2022-06-25 16:37:38

    props传递数据 步骤: 首先,在子组件中声明props选项 其次,在子组件中使用v-bind指令动态绑定属性,通过插值表达式动态获取数据 最后,在父组件的template中调用子组件标签的使用传递数据 示例:  在子组件MovieItem.vue中 <template> <div class="series-item-box"> <

  • vue中的export和export default2022-06-25 14:33:33

    首先,它们是在组件复用的过程中使用。 import引用其他组件的值,而export则是暴露自己的成员变量供其他组件调用接收。 在一个组件中,可以同时使用export和export default。     1、export default 向外暴露的成员,可以使用任意变量来接收 2、在一个模块中,export default 只允许向

  • Jmeter - 自动化压测脚本2022-06-22 11:35:56

    【问:为什么要自动化压测】 目前使用Jmeter压测,都是手动逐步加压 需要手动修改并发数,烦 需要等待完成,费时 【实现思路】 制定策略,让脚本逐步施压 --> 并发数?? 生成对应并发数的jmx文件 Jmeter静默压测 使用shell 控制逻辑 #!/usr/bin/env bash export jmx_template="testScri

  • $bus2022-06-21 20:34:39

    main.ts Vue.prototype.$bus = new Vue() xxx.vue import CombinedVueInstance from 'vue' export default class XXX extends Vue { $bus!: CombinedVueInstance emitHandle() { this.$bus.$emit('test', 'hello') } } yyy.vue im

  • Vue3 defineComponent的作用2022-06-21 10:31:07

    defineComponent函数,只是对setup函数进行封装,返回options的对象  export function defineComponent(options: unknown) { return isFunction(options) ? { setup: options } : options } defineComponent最重要的是:在TS下,给予了组件 正确的参数类型推断      搜索    

  • 工作中的redux小技巧2022-06-21 02:01:29

    1.使用actionTypes.js文件定义Type减少代码冗余,代码复用 export const CHANGE_INPUT='changeInput' export const ADD_ITEM='addItem' export const DELETE_ITEM='deleteItem' import {CHANGE_INPUT,ADD_ITEM,DELETE_ITEM} from './store/actionTypes&

  • React Hooks 手写防抖useDebounce2022-06-21 00:32:15

    定义 import { useCallback, useEffect, useRef } from "react" export interface DebounceRefType { fn: Function, timer?: NodeJS.Timeout } export type DebouncePropsType = [Function, number, Array<any>] const useDebounce = (...[fn, deb

  • React Hooks 手写节流useThrottle2022-06-21 00:31:47

    定义 import { useCallback, useEffect, useRef } from "react" export interface ThrottleRefType { fn: Function, timer?: NodeJS.Timeout } export type ThrottlePropsType = [Function, number, Array<any>] const useThrottle = (...[fn, thr

  • [Angular 14] Inject() function2022-06-20 22:34:04

    Before v14, we do DI like this: @Component({ name: 'app-root', template: `<h1>Hello!</h1>` }) export class AppComponent { constructor(private http: HttpClient) { } }   In V14, we can do: @Component({ name: 'a

  • Sword jemalloc使用小结2022-06-17 21:05:29

    最近借助jemalloc来解决内存碎片问题,但是遇到很多问题,做如下记录 优点:        jemalloc的确能对内存做一定优化,但是发现并不能解决所有内存碎片问题,只能说有一定缓解作用。 缺点:        使用jemalloc会带来内存增加问题,内存的消耗跟使用内存成正比,即申请内存越多,jemalloc

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有