- 请问大家微信小程序怎么读取本机磁盘图片?
图片在本机D:\video 数据库存了目录和文件名 [图片] 以下是小程序组件的截图,是不是要加磁盘D,这个怎么加 [图片]
2020-12-31 - 微信小程序如何展示星级评分 ?
根据https://blog.csdn.net/qq_35713752/article/details/78770260做的一个评分小程序。 我想存这些评分到云数据库,然后另一个页面读取出来。 那么请问evaluations的id与star要怎么存和怎么读取? [图片][图片]
2020-01-13 - 请问怎么存评价星星到云数据库和展示出来?
请教一下 要存点评了几颗星到云数据库并展示出来,请问存哪个字段? [图片] WXML <view class='card'> <!-- 为方便数据定位,自定义了wx:for-item为i --> <block wx:for='{{evaluations}}' wx:for-item='i' wx:key=''> <!-- 单个卡片项 --> <view class='card-item'> <!-- 卡片上方标题 --> <view class='item-title'> <view class='image-container title-image'> <image src='{{i.image}}'></image> </view> <view class='title-text'>{{i.name}}</view> </view> <!-- 卡片下方评价区 --> <view class='item-content'> <view class='image-container content-image'> <image src='{{evaluationImgUrl}}'></image> </view> <view class='contet-text content-body'> <!-- 为方便数据定位,自定义了wx:for-item为j --> <block wx:for='{{starMap}}' wx:for-item='j' wx:key=''> <view class='image-container' data-index='{{i.id}}' bindtap='chooseStar'> <image wx:if='{{i.star >= index + 1}}' data-star='{{index + 1}}' src='{{starCheckedImgUrl}}' bin ></image> <image wx:if='{{i.star < index + 1}}' data-star='{{index + 1}}' src='{{starUnCheckedImgUrl}}'></image> </view> </block> <text class='note'>{{i.note}}</text> </view> </view> </view> </block> </view> WXSS // 评价图片 evaluationImgUrl: "https://s1.ax1x.com/2018/08/05/PDM8Bj.png", //评字图片 starCheckedImgUrl: "https://s1.ax1x.com/2018/08/05/PDQ0it.png", //点亮时图片 starUnCheckedImgUrl: "https://s1.ax1x.com/2018/08/05/PDQdII.png", //熄灭时图片 // // 建议内容 // opinion: "", starMap: [ '非常差', '差', '一般', '好', '非常好', ], evaluations: [{ id: 0, name: "服务态度", image: "https://s1.ax1x.com/2018/08/05/PDMaCV.png", star: 0, note: "" }, { id: 1, name: "工作效率", image: "https://s1.ax1x.com/2018/08/05/PDMd3T.png", star: 0, note: "" }, { id: 2, name: "工作质量", image: "https://s1.ax1x.com/2018/08/05/PDMN40.png", star: 0, note: "" } ] }, JS /** * 评分 */ chooseStar: function(e) { const index = e.currentTarget.dataset.index; const star = e.target.dataset.star; let evaluations = this.data.evaluations; let evaluation = evaluations[index]; console.log(evaluation) evaluation.star = star; evaluation.note = this.data.starMap[star - 1]; this.setData({ evaluations: evaluations }) },
2019-12-16 - 请问插入日期到云数据库时间格式怎么设置?
请问插入日期到云数据格式怎么设置? [图片] [图片]
2019-12-05 - 如何获取用户昵称并存进云数据库?
如何获取用户昵称并存进云数据库?
2019-12-02