会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
小白学前端
博客园
首页
博问
闪存
新随笔
订阅
管理
2021年1月7日
数据类型
摘要: Number、String、Boolean、Null、undefined、object、symbol、bigInt。 判断数据类型 Object.prototype.toString.call 原理:调用了Object原型对象的tostring方法 typeof 运算符返回一个用来表示表达式的数据类
阅读全文
posted @ 2021-01-07 13:07 小白学前端
阅读(74)
评论(0)
推荐(0)
编辑
2020年12月18日
利用IntersectionObserver实现图片懒加载
摘要: 1 import {useEffect} from 'react'; 2 let observer; 3 export default function useObserverHook(ele,callback,watch=[]) { 4 useEffect(()=>{ 5 const node=d
阅读全文
posted @ 2020-12-18 17:20 小白学前端
阅读(184)
评论(0)
推荐(0)
编辑
2020年12月16日
think-react-store
摘要: think-react-store 基于 react hooks 和 context api 实现的类似的 redux 的数据管理库。支持数据存储,方法调用,可以在 class 组件和 function 组件中使用,支持同步和异步的方法调用。 https://github.com/cpagejs/t
阅读全文
posted @ 2020-12-16 17:18 小白学前端
阅读(241)
评论(0)
推荐(0)
编辑
project-libs 一款常用函数集锦
摘要: project-libs 是一个常用函数集锦的工具库,包括浏览器、函数式、常用验证、cookie、数组处理等函数。 https://github.com/cpagejs/project-libs
阅读全文
posted @ 2020-12-16 16:48 小白学前端
阅读(210)
评论(0)
推荐(0)
编辑
2020年8月5日
小程序横向滚动问题
摘要: 1 <scroll-view scroll-x="true" :scroll-left="scrollLeft" class="head"> 2 <div @click="changeTab(index,item.id)" :class="[nowIndex==index ?'active':'']
阅读全文
posted @ 2020-08-05 15:40 小白学前端
阅读(144)
评论(0)
推荐(0)
编辑
传参问题
摘要: 一个页面怎么给另一个页面传个对象值呢 res={content: str, okTheme: 'alink'} 传值前需要转化 1 encodeURIComponent(JSON.stringify(res)) 接收 1 JSON.parse(decodeURIComponent(this.$roo
阅读全文
posted @ 2020-08-05 15:11 小白学前端
阅读(106)
评论(0)
推荐(0)
编辑
小程序定位问题
摘要: 首先app.json打开 1 "permission": { 2 "scope.userLocation": { 3 "desc": "你的位置信息将用于小程序位置接口的效果展示" 4 } 5 }, 地图引用参照: https://lbs.amap.com/api/wx/gettingstarted
阅读全文
posted @ 2020-08-05 14:53 小白学前端
阅读(262)
评论(0)
推荐(0)
编辑
小程序复制功能
摘要: 1 <text data-data="111" bindtap='copyUrl'>复制</text> 1 copyUrl(e) { 2 const data = e.currentTarget.dataset.data 3 wx.setClipboardData({ 4 data,//要复制的内容
阅读全文
posted @ 2020-08-05 14:13 小白学前端
阅读(345)
评论(0)
推荐(0)
编辑
2020年8月4日
购物车实现单选全选,计算数量和价格
摘要: <template> <div class="login"> <div class="item" v-for="(item,index) in dataList" :key="index"> <input @change="change(index,item.checked)" type="chec
阅读全文
posted @ 2020-08-04 11:43 小白学前端
阅读(633)
评论(0)
推荐(0)
编辑
2020年7月30日
vue后台管理项目
摘要: 简单记录一下使用vue-element-admin 后台项目我采用的是vue-element-admin后台模板,我们下载下来做下改造。 1.关闭自带的mock 1-1 去除main.js 1 // if (process.env.NODE_ENV 'production') { 2 // cons
阅读全文
posted @ 2020-07-30 16:13 小白学前端
阅读(894)
评论(0)
推荐(0)
编辑
下一页