单一key值,存储一个JSON.stringify 序列化的对象(简称:json对象) 常规写法: //存储字符串 uni.setStorage({ 'storage_key_AA': 'aa' }); uni.setStorage({ 'storage_key_BB': 'bb' }); //获取存储值 ...
uniapp
uniapp 数组的用法
【使数组发生更新】方法:修改了原始数组,会触发视图更新push() 、 pop()、shift()、unshift()、 splice() 、sort()、 reverse()、 join()【返回新数组、替换数组】:不会变更原始数组,而总是返回一个新数组fi...
uni-app 删除数组中的指定元素
var index0 = this.imageList.findIndex(item => { if (item.imageName == e.imageName) { return true } }) this.imageList.splice(index0, 1) 原文链接:https...
解决uni-app开发中iphoneX下背景不能全屏铺满的问题
使用原生占位(仅App端支持) mainfest.json 文件 app-plus 节点下配置 safearea "safearea": { "background": "#CCCCCC", "bottom": { "offset": "auto" } } 不使用...
在uni-app中引入和使用uViewUI
uViewUI在HBuilder X的插件市场:https://ext.dcloud.net.cn/plugin?id=1593uViewUI官方地址:https://uviewui.com/ 1、npm 安装或者更新uViewUI 1.1、安装 // 安装 npm install uview-ui 1.2、更...
uni-app带参数跳转页面
传参页面 <view class="comment" @click="comment(detail.goods_id)"> <!-- 拿到要传过去的参数 --> </view> methods: { comment:function(id){ uni.navigateTo({ //多个参数用&拼接:u...
uni-app使用应用内置地图查看位置
如图 <map> 组件的宽/高推荐写直接量,比如:750rpx,不要设置百分比值 //插入map组件 <map style="width: 100%; height: 289rpx;" :latitude="latitude" :longitude="longitude" :markers="...
uni-app 实用样式学习 flex
如果需要均分元素实现页面排版,需要在父级元素上写入desplay:flex;子级元素就会自动均分排版;如果想实现元素不同比例的排版,在子级元素加入:nth-of-type(x)样式来定义比例。 <view class="topbar"> ...
uni-app踩坑 – gitignore忽略提交unpackage文件夹至git仓库
首先命令行新建.gitignore文件。 touch .gitignore 1 然后记事本打开。 复制粘贴以下: node_modules/ .project unpackage/ .DS_Store 1234 也可以直接使用uni-app的hello-uniapp模板中的.g...
uni-app如何在写微信小程序时调用getLocation接口获取用户位置信息
前端小白uni-app的艰难学习之路 授权配置 开发过程中,需要在unpackage>>dist>>dev>>mp-weixin>>app.json中加入如下配置:这是因为微信小程序从2019年1月14日起新提交发布的版本...