uniapp 数组操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp 数组操作相关的知识,希望对你有一定的参考价值。
参考技术A let string = "12345,56789"string.split(',') // ['12345','56789']
let array = ["123","456"]
array.join(",") // "'123','456'"
let array = ['123','456']
// 删除起始下标为1,长度为1的一个值,len设置的1,如果为0,则数组不变
array.splice(1,1) // ['123']
// 替换起始下标为1,长度为1的一个值为‘ttt’,len设置的1
array.splice(1,1,'ttt') // ['123','ttt']
// 表示在下标为1处添加一项‘ttt’
array.splice(1,0,'ttt') //['123','ttt','456']
// 数组是否包含某个元素
arr.indexOf(某元素):未找到则返回 -1。
uniapp的样式操作
参考技术A style="font-size:28upx" 这是uniapp里的字体样式style="width:225upx;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;"> //限制显示次数
<view class="homestay-list" v-for="(item3,index) in hotellist" :id="item3.id">
<image :src=item3.hotelimage></image>
<view class="homestay-text">
<view>
<text class="homestay-money">tel:<strong style="font-size:28upx">item3.hotelphone</strong></text>
<text class="homestay-membermoney">item3.cityname<strong></strong></text>
</view>
<view class="homestay-between">
<text class="homestay-people" style="width:225upx;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">item3.hoteltag</text>
<view>
<image src="/static/img/x.png"></image>
<text class="homestay-start">item3.star_type.0</text>
</view>
</view>
<view>
<text class="homestay-txt">item3.hotelname</text>
</view>
</view>
</view> //一个循环遍历的显示的典型例子
以上是关于uniapp 数组操作的主要内容,如果未能解决你的问题,请参考以下文章