logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

react 通过react的方式添加和卸载节点

import ReactDom from 'react-dom'添加节点:ReactDom.render(ReactNode,挂载的dom对象)将内容添加到dom对象内卸载节点:let state=ReactDom.unmountComponentAtNode(挂载的dom对象)返回是否删除成功bool值删除dom对象内的内容代码示例:const div = document.createElem

react 使得单个页面的高度为100%

1、在index.css设置html、body、#root的高度为100%2、在组件中设置最外层高度为100%

git git pull和git pull --rebase的区别

git pull = git fetch + git mergegit pull --rebase = git fetch + git rebase现在有两个分支:test和master,假设远端的master的代码已经更改了(在B基础上变动:C,F),test的代码更改了要提交代码(在B基础上变动:D,E),如下图:D---E test/A---B---C---F--- master问题就来了,

文章图片
#git
rn 底部导航栏react-native-tab-navigator

1、安装yarn add react-native-tab-navigato2、使用(1)import TabNavigator from 'react-native-tab-navigator';(2)定义statestate={selectedTab:''}<TabNavigatorsceneStyle={{...}}tabBarStyletabBarShadowStyle>&lt

#react native
小程序 媒体查询match-media和@media、page-container弹出层组件、share-element共享元素页面间穿越动画

1、match-media<match-mediamin-width页面最小宽度(px为单位)max-width页面最大宽度(px为单位)width页面宽度(px为单位)min-height页面最小高度(px为单位)max-height页面最大高度(px为单位)height页面高度(px为单位)orientation屏幕方向(landscape或portrait)>..

#小程序
rn 本地服务器报错[TypeError: Network request failed]

访问本地服务器,要将地址改成:http://10.0.2.2:3000

#react native
小程序 云数据库增删改查、聚合

增初始化let db=wx.cloud.database()连接集合db.collection('集合名').add({data:{键值对},success:function(res){成功回调}})查1、id查询async getDb(){let db=wx.cloud.database();...

#小程序
linux 打开文件、关闭文件、编辑模式、末行模式下操作等编辑指令

打开文件vi 文件打开文件,光标在第一行vi +22profile光标定位到文件的第22行vi + profile光标定位到文件最后一行vi profile 打开文件后 shift+G光标定位到最后一行vi +/要匹配字符文件路径光标定位到匹配字符那一行,如 vi+/ifsxt/play.log关闭文件:q退出,没有动过...

文章图片
#linux
ReactHook RefHook

除了可以进行ref操作以外,还能进行数据存储的操作1、引入import React, { Component,useRef } from 'react';2、使用refconst xx=useRef(任意内容);在标签上: ref={inputEL}3、操作refxx.current.dom操作4、若使用ref容器存储数据,即当作this来使用const xx=useRef(初始数据);改变数据:

echarts graphic为图表添加图形等元素

1、配置option={...,graphic: {type: 'image',...}}支持添加的类型有:image, text, circle, sector, ring, polygon, polyline, rect, line, bezierCurve, arc, group,2、多个图形以及嵌套容器graphic: [{

#echarts
    共 76 条
  • 1
  • 2
  • 3
  • 8
  • 请选择