加一个类目也行,宠物/非医院类 试试
宠物小程序关于兽医类目如何增加?我们是做的宠物类目,主要经营的宠物食品、保健品和用品。同时有全国各地的宠物医院信息展示,我们自己不提供宠物医疗服务,主要为全国各地宠物医院信息展示。 在提交验证审核的时候,要求我们增加兽医类目,我们不能把全部宠物医院的诊疗许可证一起提交。 请问这种情况如何处理
2020-06-15授权什么?授权头像么?
如何在云开发中实现用户登录授权?希望被解答
2020-06-15前面有个加字符串的操作,所以加到 timex.getMonth() 的时候类型已经隐式转换为字符串了 var timer = time.getFullYear() +'/'+ (timex.getMonth()+1)
如何正确的拼接这个日期的字符串?vartime = getMonth() 如这个值是5 var timer = getMonth()+1 正确是我想要的6 var timer = time.getFullYear() +'/'+ timex.getMonth()+1 但这样拼接再一起的时候,不是我想要的2020/6,而变成了2020/51 该如何正确拼接
2020-06-15服务号模板消息: https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.htm [图片]
服务号里的这种通知是怎么做的?[图片] 关注了服务号,服务号主动发送这种消息通知(红线处)。请问这种通知是属于服务号里的什么功能,在开发文档里属于哪一块?有没有开发文档的地址
2020-06-14可以用微信服务号的 模板消息 功能, 模板消息 功能 需要商家关注 微信服务号, 并且关联到你的小程序系统中 这个 模板消息 是没有限制的 文档地址: https://https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.html
商家端小程序,怎么才能一直提示商家有新的订单?难道每次都要商家去订阅吗?sh商家端小程序,怎么才能一直提示商家有新的订单?难道每次都要商家去订阅吗?
2020-06-14我最近好几个审核都在1天之内,感觉你的应该是不明原因漏掉了 你可以随便该一点代码, 然后在提交。不要气馁 多尝试几次, 毕竟我们开发者是被动的。但要化被动为主动!
我就想知道小程序审核要多久?都一个星期了,还没审核通过,你们不急我们都急死了! [图片]
2020-06-14[图片]
自定义组件-单个Item形成列表报错?需求:在不同分类里形成wx:for加载的List,使用自定义组件是最优解吗? 报错: Uncaught Error: module "list-Item/list-item.js" is not definedError: Component is not found in path "list-item" (using by "pages/example/example")自定义组件代码段:(example.wxml): <!--以上为分类相关代码--> <!--此处报错2--> <swiper current="{{currentTab}}" duration="10" bindchange="swiperTab"> <swiper-item> <list-item inpt="{{inpt}}"></list-item> </swiper-item> </swiper> </view> 自定义组件相关代码: list-item.wxml: <view class="item"> <view class="content"> <view class="inpt">{{inpt}}</view> </view> </view> list-litm.js: Component({ item: { type: String, value: '', }, properties: { data: { inpt: "", }, }, methods: { clickTab: function (e) { if (this.data.currentTab === e.target.dataset.current) { return false; } else { that.setData({ currentTab: e.target.dataset.current, wx.navigateTo({ //此处报错1 url: 'url', //相应完结括号
2020-06-14重启开发者工具试试, 我有时候也会遇到类似的奇怪问题
云开发不开启云函数本地调试,数据正常加载。开启后,云函数能正常访问到。但是不能访问数据库了。报错超时原本的查询添加数据库的云函数是可以使用的,现在全部都不能使用了 httpRequest.js:131 Your current request database.getDocument is longer than 3s, it may be due to the network or your query performance | node.js:1 [error] 函数执行失败(耗时 15038ms) Error: errCode: -501001 resource system error | errMsg: collection.get:fail ESOCKETTIMEDOUT; at collection.get api; at returnAsCloudSDKError (D:\WXAppDevelop\Projects\maicaihang_alpha\cloudfunctions\queryGoods\node_modules\wx-server-sdk\index.js:6187:16) at Object.returnAsFinalCloudSDKError (D:\WXAppDevelop\Projects\maicaihang_alpha\cloudfunctions\queryGoods\node_modules\wx-server-sdk\index.js:6201:15) at D:\WXAppDevelop\Projects\maicaihang_alpha\cloudfunctions\queryGoods\node_modules\wx-server-sdk\index.js:1437:32 at processTicksAndRejections (internal/process/task_queues.js:97:5)
2020-06-14审核人员需要的账号你可以给他们提供一些测试账号, 敏感数据之类的应该是根据账号权限走的 有些页面虽然测试人员可以看到, 但是在他们只能看到没有数据的情况下是什么样的 所以只要把你的敏感数据保存在数据库中, 然后设计好权限. 这样就不会被审核人员看到
可以用微信小程序开发后台吗?我想用微信小程序来写后台,然后在手机上操作数据库,及前台售后退款的功能,不过代码要经过审核,不知道这样的小程序腾讯是否允审核通过,如果可以审核通过,便我后台有敏感数据,代码审核的过程中会不会有风险
2020-06-13我刚刚试过了, 亲测有效 . 我记得以前的小程序时不支持 animation 的现在支持了 测试代码: https://github.com/shixinglong007/wxa-case/tree/master/animation/demo001 <text> 测试小程序 animation 向下的箭头 </text> <View class="amin" > ↓ </View> .amin { position: relative; text-align: center; font-size: 50rpx; animation: animFn 1s infinite; } @keyframes animFn { 0% { bottom: 0; } 50% { bottom: -20rpx; } 100% { bottom: 0; } }
向下箭头→的动画怎么做?[图片] 这个箭头要会向下动 https://www.sohu.com/a/165594235_607781
2020-06-13