uniapp

uniapp的uni.setStorage存储数组对象

单一key值,存储一个JSON.stringify 序列化的对象(简称:json对象) 常规写法: //存储字符串 uni.setStorage({ 'storage_key_AA': 'aa' }); uni.setStorage({ 'storage_key_BB': 'bb' }); //获取存储值 ...

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中引入和使用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 实用样式学习 flex

如果需要均分元素实现页面排版,需要在父级元素上写入desplay:flex;子级元素就会自动均分排版;如果想实现元素不同比例的排版,在子级元素加入:nth-of-type(x)样式来定义比例。 <view class="topbar"> ...