[图片] 同一个问题,主体是 [图片]
「小程序申请人脸识别身份验证接口未通过」 如何解决?小程序申请人脸识别身份验证接口未通过,原因如下:您好,该账号主体及资质不符合人脸开通规范,暂不支持接入,请知悉。 关于人脸接口开通规范可参考此链接:https://developers.weixin.qq.com/community/business/doc/000442d352c1202bd498ecb105c00d 我公司主体为新能源,没有相关的电力证,不知道怎么解决这个问题。 [图片]
2022-04-26auto-height="false" 可能有用
textarea组件长按粘贴长文本手机会显示空白?[图片]在获取textarea组件的焦点后,长按粘贴长文本出现如图的空白,只有关闭键盘文本才能显示出来 <view class="content_textarea"> <textarea placeholder="内容输入" maxlength="-1" data-index="{{index}}" placeholder-class="placeholderClass" auto-height="true" bindinput="contentInput" bindblur="contentBurl" cursor-spacing="200" value="{{item.children[1].children[0]['text']}}"></textarea> </view>
2020-11-11目前的可能的替代方案:是使用imageUrl : 网络图片的URL ,这样解决掉了 imageUrl 显示的图片不是默认截图
onShareAppMessage , imageUrl ,显示错误1.通过分享的片段,不断的分享,imageUrl 可能是自定义放置的一张默认图片,或者页面截图。 ps:1.在分享的测试片段中,imageUrl固定的是一张默认图片URL, 2 分享片段上面显示的第一张是 video 上截得第一张图
2020-01-13<template> <!-- margin-bottom 是为了显示 展开文章后 的 收齐 --> <view class="common-article-wrap" :style="{'maxHeight':`${!isVisible ? 38*(maxShowLine + 1)+'rpx' : 'auto'}`,'overflow':`${!isVisible ? 'hidden' : 'visible'}`,'marginBottom':`${!isVisible ? '0rpx' : '38rpx'}`}"> <view class="common-article-body"> <text v-text="text"></text> </view> <view class="common-show-more-wrap"> <!-- 高度和文章的高度一致 --> <view class="placeholder-text-height"></view> <!-- 隐藏 高度是 h * lineheight 展开 是 文章高度 --> <view class="placeholder-text-line-height" :style="{'height':`${!isVisible ? 38*(maxShowLine)+'rpx' : '100%'}`}"></view> <!-- background 是隐藏文章 显示的 h + 1行 --> <view class="common-show-more" :style="{'backgroundColor':backgroundColor}" @tap="toggleVisible"> <text v-text="visibleText"></text> </view> </view> </view> </template> <script> // export default{ name:"CommonShowMore", data(){ return { isVisible:false, // 是否显示隐藏 maxShowLine:2, // 最大显示多少行 } }, computed:{ visibleText(){ return !this.isVisible ? '查看原文' : '收起' } }, methods:{ toggleVisible(){ this.isVisible = !this.isVisible; } }, props:{ // 显示的纯文本内容,不兼容z-index 比较高的内容 text:{ type:String, default:'' }, backgroundColor:{ type:String, default:"#FFFFFF" } } } </script> <style lang="scss"> $lineHeight:38rpx; .common-article-wrap{ overflow: hidden; font-size: 30rpx; line-height: $lineHeight; font-weight: 400; color:#3C3C3C; position: relative; .common-article-body{ &>text{ word-break: break-all; white-space: pre-wrap; hyphens: auto; } } .common-show-more-wrap{ position:absolute; top: 0; left: 0%; width: 100%; height: 100%; .placeholder-text-height{ float:right; height: 100%; width:1rpx; //width:1%; } .placeholder-text-line-height{ float:right; width:calc(100% - 1rpx); //width:99%; } .common-show-more{ float:left; width:calc(100% - 1rpx); //width:99%; height:$lineHeight; line-height:$lineHeight; z-index:2; color: #5B7DFE; } &:after{ clear:both; content:''; } } } </style> 【使用 uni-app 做的,使用 css 的解决方案】【参考链接 https://www.cnblogs.com/wetest/p/7365676.html】 [图片][图片]
如何判断多行文本溢出达成的条件需求: 未知字数的一段文本,最多显示4行; 超过四行,则文本溢出,显示展开按钮,展开后显示收起按钮 1.字数较少,不显示展开按钮 [图片] 2.超过四行,文本溢出,显示展开 [图片] 3.超出四行,展开后显示收起 [图片] 多行文本溢出代码: overflow: hidden; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 4; text-overflow: ellipsis; 问题:文本内容达到溢出的条件怎么判断,现在是用文本的字数,比如105个字,超过105个字显示按钮,但显然不合理,求指导,谢谢
2020-01-09