个人案例
- 普斯
普斯健康小程序是一款为企业打造的员工心理健康平台。
普斯健康扫码体验
检查地图坐标系是否统一
用户发布定位获取返回经纬度坐标,与实际地图定位不匹配。怎么解决?/** * 中文地址解析为经纬度 * * @param address * @return */ public ResponseResult<RegeoModel> regeo(String address) { ResponseResult<RegeoModel> result = new ResponseResult<>(); result.setStatus(-1); try { String url = "https://apis.map.qq.com/ws/geocoder/v1/?address="; URIBuilder urlBuilder = new URIBuilder(url); urlBuilder.addParameter("address", address); urlBuilder.addParameter("key", key); HttpGet httpGet = new HttpGet(urlBuilder.build()); HttpResponse httpResponse = httpClient.execute(httpGet); if (validHttpStatusCode(httpResponse)) { result.setStatus(ResponseResult.status_success); String response = EntityUtils.toString(httpResponse.getEntity()); logger.debug("", response); JSONObject map = JSONObject.parseObject(response); if (map.getInteger("status") == 0) { JSONObject resultData = map.getJSONObject("result"); RegeoModel regeoModel = new RegeoModel(); JSONObject location = resultData.getJSONObject("location"); regeoModel.setLng(location.getBigDecimal("lng")); regeoModel.setLat(location.getBigDecimal("lat")); JSONObject addressComponents = resultData.getJSONObject("address_components"); regeoModel.setProvince(addressComponents.getString("province")); regeoModel.setCity(addressComponents.getString("city")); regeoModel.setDistrict(addressComponents.getString("district")); regeoModel.setStreet(addressComponents.getString("street")); JSONObject adInfo = resultData.getJSONObject("ad_info"); if (adInfo != null && adInfo.get("adcode") != null) { regeoModel.setAdCode(adInfo.getString("adcode")); } result.setData(regeoModel); return result; } else { result.setStatus(map.getInteger("status")); lo
06-05common包里都是代码吗,有静态资源吗
如何将微信小程序主包中的common和uni_modules这两个文件减小?我是用uniapp做的,如何将微信小程序主包中的common和uni_modules这两个文件减小 组件已经尽可能转到分包了,剩下的都是好几个分包共用的组件,common和uni_modules一直很大,有什么办法减小吗,各位大神帮忙看看 [图片]
06-05ssl证书配置好了吗
发布的体验版小程序,部分体验者微信访问网络请求正常,部分体验者微信访问网络异常?开发的小程序还未备案,添加了几个体验成员,发布了体验版准备测试一下,结果发现部分体验者微信访问网络请求正常,部分体验者微信访问提示:当前网络繁忙,请稍后重试---自己加的http异常返回日志。 微信小程序AppId:wxf1789d2df8f8e600
06-05检查经纬度赋值。非洲大海一般是0,0
接入腾讯地图插件后,用户的坐标错位,为什么却定位到了非洲大海里?<template> <view class="content"> <map id="map" :latitude="latitude" :longitude="longitude" :style="{ width: '100%', height: windowHeight + 'px' }" :scale="10" @markertap="markTap"></map> </view> </template> <script> export default { data() { return { _mapContext: null, windowHeight: 0, latitude: 23.099994, longitude: 113.324520, } }, onLoad() { }, onReady() { uni.getSystemInfo({ success: (res) => { this.windowHeight = res.windowHeight; }, }); // 创建map对象 this._mapContext = uni.createMapContext("map", this); this.cluster(); }, methods: { markTap(e) { console.log('ccccccc') console.log(e) console.log('ccccccc') uni.showToast({ title: `客户名称${e.markerId}` }) }, // 点聚合 cluster() { // 仅调用初始化,才会触发 on.("markerClusterCreate", (e) => {}) this._mapContext.initMarkerCluster({ enableDefaultStyle: false, // 是否使用默认样式 zoomOnClick: true, // 点击聚合的点,是否改变地图的缩放级别 gridSize: 60, // 聚合计算时网格的像素大小,默认60 complete(res) { console.log('initMarkerCluster', res) } }); this._mapContext.on("markerClusterCreate", (res) => { console.log("markerClusterCreate", res); const clusters = res.clusters const markers = clusters.map(cluster => { const { center, clusterId, markerIds } = cluster return { ...center, width: 0, height: 0, clusterId, // 必须 label: { content: markerIds.length + '', fontSize: 16, color: '#ffffff', width: 50, height: 50, bgColor: '#00A3FA', borderRadius: 25, textAlign: 'center', anchorX: 0, anchorY: -20, } } }) this._mapContext.addMarkers({ markers, clear: false, complete(res) { console.log('clusterCreate addMarkers', res) } }) }); this._mapContext.on('markerCl
06-05经营范围缺少 智能硬件服务
小程序登记设备申请审核不通过是什么问题?审核类型:硬件设备>登记设备 小程序登记设备(手持终端PDA)审核不通过,情况说明:1、小程序已完成认证 2、营业执照经营范围包含设备的开发,请问是什么原因审核不通过的?是缺少哪些资料吗?需要如何补充资料才能通过呢? [图片] [图片]
06-03录个流程视频传上去就行
小程序有登录功能,发布审核的时候需要填写测试账号,可是后端生产版本没有测试账号,如何解决?[图片] 有没有关于测试账号的解决方案,不填测试账号,审核能通过吗?
05-31疑问点在哪呢
自定义组件中设置宽度问题?[图片] 求解为什么会出现这种情况?其他的都没问题 突然出现的
05-29去uni社区问
uniapp打包到开发者工具上,分包资源未被打包,相应情况如何解决?这是开发者工具的[图片] 这是hbuilder上的[图片] 已经尝试过重启、清除缓存,无法解决
05-29重新构建一下npm试试
vant weapp 为什么样式都有问题?有没有大哥帮忙看一下很急[图片]为什么这个date-picker只会显示1970年我不是给了最大范围和最小范围,加上下面这个van-picker组件连组件都不显示出来
05-29wx.getWeRunData不收费,有收费的组件会在文档里注明的 [图片]
小程序获取微信运动步数wx.getWeRunData(Object object)是否收费?如题,小程序通过 wx.getWeRunData(Object object) 获取微信运动步数时是否会产生费用? 整个小程序开发过程中需要付费的 API 接口有哪些? 从哪里可以获知哪些 API 需要付费?
05-29