问题:用户扫码设备支付,提示风险性访问,导致部分用户不敢访问,影响用户体验,麻烦解除 设备二维码:[图片] 设备二维码内容链接:https://uz953egx18e8.jinxiahui.xyz/?code=79200709267702&captcha=BE8C14A9671186C0FB7569E34F274C45 这是我们工厂的产品图片:[图片] (因为无法上传视频,我随便截图了)
有用户说他没收到通知,但是我们调用发送接口返回的是发送成功的,虽然这个用户是明显恶意的,但是我们也需要给他拿出凭证来
域名被限制访问 https://duanxianxia.com, 您好,本网站已备案,并已悬挂备案号,备案号为:粤ICP备2025400938号-3,公司已取得增值电信许可证:粤B2-20251249 请求解除拦截,感谢 [图片]
请问: 我一小区购物小程序,线上购买,线下提走,不涉及什么快递信息,也要接入订单管理,确认收货之类的这些 api ? 不接入就是不是就不能支付? 另外,假如要接入的话,也没见订单管理具体的接入api?请问在哪里? 能否取消接入订单管理,如果能,请提供一下取消接入的api,我确实是找不到。 谢谢
[图片] https://smrk.ruikexie.top:9021/ 网站也备过案了,证书也在有效期。就是访问不了。但是直接访问服务器地址就能连上。
访问“http://h5.xijietech.cn” 提示“如需浏览,请长按网址复制后使用浏览器访问” 是什么原因,也看不到哪里有违规[图片]
每个游戏都进不去 [图片]
很用心和认真的做小程序,用户体验和功能都做得比价好,用户给了很好的评分,通过这些评价我也更有动力去持续优化和改善 但是最近看到是把这个功能给部分小程序去掉了,很想知道做这个决策的目的是什么?
以下 shipping为请求的发货信息,同时分别用两种方案上传,报不同的格式错误,请各路PHP大神指导 [图片] 方案一:报47007错误 [图片] 方案二:报47001错误 [图片]
当点击列表进入详情页时,其他都显示在页面中,唯独income没有显示出来,这是什么问题,怎么解决? [图片][图片] <!--pages/jobs/add/edit-position/edit-position.wxml--> <view class="add-position-group"> <expectation formjobs="{{formData.jobs}}" formjobsCount="{{formData.jobsCount}}" formindustries="{{formData.industries}}" formindustriesCount="{{formData.industriesCount}}" isEditMode="{{isEditMode}}" expectationName="{{expectationName}}" expectationCity="{{expectationCity}}" income="{{income}}" bindjobs="onJobs" bindindustries="onIndustries" bind:namechange="onNameChange" bind:citychange="onCityChange" bind:incomechange="onincomechange"> </expectation> <view class="btn-ground"> <button class="sunbmit-btn" style="width:200rpx;" bindtap="onDeleteConfig">删除</button> <button form-type="submit" type="primary" class="sunbmit-btn" bindtap="onSaveConfig">保存配置</button> </view> </view> // pages/jobs/add/edit-position/edit-position.js const app = getApp(); const db = wx.cloud.database(); const _ = db.command; Page({ data: { formData: { jobs: [], jobsCount: 0, industries: [], industriesCount: 0 }, isEditMode: true, editItemId: '', expectationName: '全职', // 默认职位类型 expectationCity: '请选择工作城市', // 默认城市 income: '' // 初始为空 }, async onLoad(options) { try { await app.loadUserInfo(); this.setData({ editItemId: options.id, }); if (options.id) { await this.loadEditData(options.id); } } catch (error) { console.error("app.loadUserInfo() 出错:", error); } }, //加载编辑数据的方法 async loadEditData(id) { try { const res = await db.collection('resume').where({ _openid: app.globalData.openid, }).field({ expectation: true, _id: false, }).get(); console.log("res", res) console.log("res.data", res.data) console.log("res.data[0]", res.data[0]) if (res.data && res.data.length > 0) { const expectationList = res.data[0].expectation || []; const target = expectationList.find(item => item.id === id); console.log("target", target) console.log("targetincome", target.income) if (target) { this.setData({ expectationName: target.expectationName || '全职', expectationCity: target.expectationCity || '请选择工作城市', income: target.income || '', 'formData.jobs': target.expectationPosition || [], 'formData.jobsCount': target.expectationPosition ? target.expectationPosition.length : 0, 'formData.industries': target.expectationIndustry || [], 'formData.industriesCount': target.expectationIndustry ? target.expectationIndustry.length : 0, }); } } } catch (error) { console.error('加载编辑数据失败:', error); wx.showToast({ title: '加载数据失败', icon: 'none' }); } console.log('after setData income:', this.data.income) // 确认setData后income的值 }, /** * 薪资要求 */ onincomechange(e) { console.log(e) this.setData({ income: e.detail.value }); }, }); <!--components/expectation/expectation.wxml--> <view class="expectation-container"> <view class="add-list"> <view class="add-list-title">薪资要求</view> <view class="list-content"> <selector-tow name="income" pay-type="{{expectationName === '临/兼职' ? 'hourly' : 'monthly'}}" value="{{currentIncome}}" bindchange="onIncomeChange"></selector-tow> </view> </view> </view> // components/expectation/expectation.js Component({ properties: { income: { type: String, value: '', observer: function(newVal) { console.log('income changed in component:', newVal) if (newVal) { this.setData({ currentIncome: newVal }) } } } }, data: { natures: [{id: 0,name: '全职'}, {id: 1,name: '临/兼职'}], selectedNature: '', showPartTimeOnly: false, showFullTimeOnly: false, currentIncome: '' }, lifetimes: { async attached() { console.log('attached - income:',this.properties.income ) // 这里应该能打印出值 if (this.properties.income) { this.setData({ currentIncome: this.properties.income }) } } }, methods: { /** * 薪资要求 */ onIncomeChange(e) { console.log(e) const income = e.detail.value this.setData({ currentIncome: income }) this.triggerEvent('incomechange', { value: income }) } } }); <!--components/selector-tow/selector-tow.wxml--> <view class="section"> <picker mode="multiSelector" range="{{multiArray}}" value="{{multiIndex}}" bindchange="changeMulti" bindcolumnchange="nocolumnchange"> <view class="section-picker"> <view class="picker {{current === '请选择' ? 'address-red' : ''}}"> {{current === '面议' ? '面议' : current}} </view> <icon class="icon"></icon> </view> </picker> </view> // components/selector-tow/selector-tow.js const { hourlyWageList, monthlyPayList } = require('../../utils/util') Component({ /** * 组件的属性列表 */ properties: { payType: { type: String, value: 'monthly' // hourly/monthly }, income:{ type:String, value:'' } }, /** * 组件的初始数据 */ data: { multiArray: [], classArray: [], multiIndex: [0, 0], current: '请选择', }, observers: { 'payType'(type) { const config = type === 'hourly' ? hourlyWageList : monthlyPayList this.setData({ multiArray: config.multiArray, classArray: config.classArray, multiIndex: config.multiIndex, current: config.current }) } }, /** * 组件的方法列表 */ methods: { changeMulti(e) { const [col1, col2] = e.detail.value; const firstValue = this.data.multiArray[0][col1]; const displayValue = firstValue === '面议' ? firstValue : `${firstValue}-${this.data.multiArray[1][col2]}`; this.setData({ multiIndex: e.detail.value, current: displayValue }); this.triggerEvent('change', { value: displayValue }); }, nocolumnchange(e) { const column = e.detail.column const value = e.detail.value const newData = { multiIndex: [...this.data.multiIndex], multiArray: [...this.data.multiArray] } if (column === 0) { newData.multiArray[1] = this.data.classArray[value] newData.multiIndex = [value, 0] this.setData(newData) } } } })
你好,我们公司网站h5网页提醒(如需浏览,请长按网址复制后使用浏览器访问)怎么解决呢?域名是通过备案运营的,SSL安全证书也设置了 我司域名:www.minsu6.com,移动端:m.minsu6.com [图片][图片][图片]
请问各位 公众号 服务号 小程序 开放平台 企业微信 这些功能的微信认证,是每个都要认证一次吗,我能认证一个,其他的直接复用吗,还是要每个都认证一次,每年花费300*5=1500元
<template> <view style="padding: 40rpx;"> <button type="primary" @click="getProfile">微信授权</button> </view> </template> <script setup> function getProfile() { un.getUserProfile({ desc: '测试 getUserProfile 弹窗', success: (res) => { console.log('success', res) uni.showModal({ title: '授权成功', content: JSON.stringify(res.userInfo, null, 2) }) }, fail: (err) => { console.log('fail', err) uni.showModal({ title: '授权失败', content: JSON.stringify(err, null, 2) }) } }) } </script> 写了个简单的demo 返回的还是测试数据 调用这个方法也不自动调起微信的授权弹窗
官方又偷偷摸摸上能力了,与微信小程序打通能力记录。
自动回复调用链接如下: https://mp.weixin.qq.com/mp/subscribemsg?action=get_confirm&appid=wx933b0246822710dd&scene=1000&template_id=ww6y2VYwPf83O7vqsjPSNpu1SNd4ofThC8tRUZ2_o78&redirect_url=https%3A%2F%2Fgritglee.net%2Fsubscribe_auth.html&reserved=test#wechat_redirect template_id的取值如下: [图片] [图片] 后端调用的接口如下: https://api.weixin.qq.com/cgi-bin/message/subscribe/bizsend?access_token= 报错如下:发送服务号订阅消息,错误码:43101,错误信息:user refuse to accept the msg rid: 6872322b-7ac7c950-53408b04
网站在微信浏览器打开被拦截,域名https://jcph888.com [图片] [图片]
尊敬的腾讯公司: 您好! 在我们的小程序中,打开地址如下。提示我们的页面存在风险。 该页面为: 小程序不能使用TRTC 实现实时的语音聊天。为此,我们只能通过webview打卡Html5,实现语音聊天能力。该网站目前也只实现语音聊天功能。 我们已经: 1、域名已经备案 2、配备安全证书 3、我们服务器部分金山云。 4、不存在套取用户信息行为 请贵方核实一下情况,并且给予解放安全提醒。 谢谢! https://qingning.cloud/speak-core/#/chat?orderId=1943930736164970497&roomId=&type= [图片][图片] [图片]
使用密文Scheme连续打开小程序几次,就有可能卡死,整个小程序都无法使用,右上角的按钮无法点击。然后使用微信后台设置的二维码没啥问题,目前找到一个解决方案,关闭开屏广告,就不会有这个问题,但是开屏广告需要开启的,不能一直关闭。求问怎么解决?
项目文件有点多,简单描述下就是代码没改的前提下,今天突然打开代码想运行一下后发现,原本好好的按钮点击手机号码登录这个功能老是登录失败,提示401,报的是token失效[图片] 是不是最近这个button改了啥啊,我button的代码 [图片] 对应js代码 [图片] 调用通用的app.js的代码 [图片][图片][图片][图片]
小米手机打开藏文小程序,藏文无法显示 [图片]这张为苹果手机显示的页面 [图片][图片]这两张为小米手机展示的页面,不管打开我们自己开发的还是其他有藏文的程序都无法展示
想了解小程序啥时候支持live图呢