怀疑是你们后端没有返回content-range[图片] 你们mp4请求的响应如下: [图片]
Video组件在ios中无法播放视频,安卓可以?<Video style={{ width: "100%" }} id="video" src="https://paytest.zsins.com/openapi/public/preview/eyJidWNrZXROYW1lIjoiZXh0cmEiLCJvYmplY3RJZCI6IjIwMjMwNDI4LzYyZGZiNTgwNjM1ZDQ2YzdiZjQxZWQ3MjAzODRiNWRjLzIzMDQyOF8xNGVqYTduViIsImZpbGVOYW1lIjoi5rWL6K*VLm1wNCJ9?download=false&file=mp4" initialTime={0} controls={true} autoplay={false} loop={false} muted={false} />
2023-05-06实现不了吧,没有全局挂载弹窗的地方
wx.showModal在Page页面跳转时会自动消失,如果属于本身特性的话如何实现全局弹框https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showModal.html
2022-11-22最外层的两对大括号给我去掉!!大括号是包含变量的!!
微信小程序使用循环增加的输入框怎么用value表示每一个输入框的初始值?[图片] 想给每个新增的输入框都赋值不同的初始数据,但是value="{{di{{index+2}}ren}}" 这么写会报错,不能{{ {{{}} }},有没有大神指导一下?
2022-11-18[图片]文档写的是点击,没说滑动不会收起键盘呢,严谨了哈哈哈
hold-keyboard在页面滑动时,还是会收起键盘https://developers.weixin.qq.com/miniprogram/dev/component/input.html
2022-11-17搞个activeIndex,和当前index匹配
自定义组件内,怎么让它点击时切换样式?一个自定义列表组件,需呈现效果: 1.点击时字体放大,底部出现绿条; 2.未点击时标准字体大小,底部没有绿条; 3.点击某一个内容时,其他的内容均呈现未点击状态。 目前实现的效果是 点开页面后,所有内容都为点击状态: [图片] 需要最终效果为: [图片][图片] 该组件的代码如下: import React, { memo, useCallback, useEffect, useMemo, useState } from 'react'; import PropTypes from 'prop-types'; import { View, Text, } from 'remax/wechat'; import { clearSearchBase64Url } from '@/actions/common' import { connect } from 'react-redux'; import useSysInfo from '../../hooks/sysInfo' import styles from './index.css'; const HelptitleItem = memo(function (props) { const { id, name } = props; const sysInfo = useSysInfo(); const [status, setStatus] = useState(1); const changeStatus1 = useCallback(() => { if (status) { setStatus(prev => prev === 0 ? 1 : 0) return; } else { setStatus(prev => prev === 1 ? 0 : 1) } }, [status]) function showmodal() { let data1 = { props } props.showModal(data1) } return ( <View className={styles.list}> <View className={styles.selectquestion} onTap={() => { showmodal() changeStatus1() }} style={(status) ? { "font-size": "30rpx", "color": "#1D1D1D;" } : { "font-size": "26rpx", "color": "#666666;" }}> <Text>{name}</Text> { (status) ? <View className={styles.greenline}></View> : null } </View> </View> ) }) HelptitleItem.propTypes = { id: PropTypes.string.isRequired, name: PropTypes.string.isRequired, } HelptitleItem.defaultProps = { } const mapStateToProps = (state) => { const { userInfo } = state.common return { userInfo } } const mapDispatchToProps = (dispatch) => { return { clearSearchBase64Url: () => { dispatch(clearSearchBase64Url()) } } } export default connect(mapStateToProps, mapDispatchToProps)(HelptitleItem); 怎么改代码让它正确实现?
2022-11-17首先,你用这么多input肯定是不行的,在手机上的体验非常不好!每次输完一个数字,键盘都会缩起再出现,抖动很厉害。我改造了下你的,改成只用一个input了,https://developers.weixin.qq.com/s/FEPOLPm87RD7
关于多个input长度限制为1,输入完自动跳转下一个input,删除跳回上一个input的问题?使用focus可以做到输入跳转到下一个,删除时我使用的是bindinput带过来的内容如果为空则跳转到上一个input,可是,如果input为空,就不会触发bindinput就做不到删除上一个input的内容,本来想监听键盘的删除事件,但是经过查询,给出的方法是bindinput中带有keyCode,那么问题有回来了,input为空并不会触发,bindinput,自然也就拿不到keyCode依然还是无法监听到键盘事件.....这是我是想要实现的效果图:[图片] wxml代码: <view class="code"> <input class="input_a" bindinput="inputListener" data-index="{{index}}" focus="{{focus && (focusIndex == index)}}" model:value="{{code[index]}}" placeholder="_" wx:for="{{code}}" wx:key="index" maxlength="1"/> </view> js代码: data: { code:["","","","","","","","","","","","","","","","","","","","","","","","",], focus: true, focusIndex: 0, }, // 输入时事件 inputListener(v) { console.log("键盘",v.detail.keyCode) console.log("下标",v.currentTarget.dataset.index) console.log("内容",v.detail.value) let e = v.currentTarget.dataset.index let n = v.detail.value let index = "code[" + e + "]" this.setData({ [index]:n }) if (this.data.focusIndex != e) this.setData({ focusIndex:e }) if (e < 24) { if(n != ''){ if(this.data.focusIndex == 23){ this.setData({ focus:true, }) }else{ this.setData({ focus:true, focusIndex:e + 1 }) } }else{ this.setData({ focus:true, focusIndex:e - 1 }) } } },
2022-11-17额,没用过vant,不过看了vant官方小程序的tab组件,一点也不卡,或许你应该贴出代码片段,不然无从下手,你自己也可以隐藏其他元素,只留tab组件看看卡不卡
van-tabs的两个bug?跪求大佬们支援1.页面刷新渲染的时候,tab的高亮下划线会偏移到最左边。(这个我查过很多博客,基本都是说官方文档最下面的那两个解决方案,我都试过了,不知道是不是我操作有问题,都没有用) [图片] 2.最烦人的问题,在开发者工具上没问题,每个tab切换都很流畅,一到手机上,巨卡无比,基本上点一次要两秒钟高亮的下划线才能跟过去。 [图片]
2022-11-17distance为0了呀,所以不显示,你加打印看看呀
腾讯地图出现了问题?APPID wxc7614d1805e32a7f 一点地图位置都不显示,好像是连着数据库的,但我不是很熟,我就是小白 [图片][图片]
2022-11-17实例只有__proto__呀,原型才有prototype
用getapp获取实例,实例上自定义的函数prototype为undefined?index/index.js文件中console.log(app.ajax.prototype)为undefined 代码片段 https://developers.weixin.qq.com/s/Iru4zPmB7fDT
2022-11-17为什么要实时呢,反正只有点了返回才可以返回到小程序页面,[图片],在点返回的时候传递下消息不就得了
微信小程序有开放小程序和H5之前双向实时通信的功能?公司开发遇到一个问题,小程序接入h5,需要获取h5的登录信息。实时回调给小程序页面。 有开放这个功能吗?
2022-11-16