- 获取access_token的次数达到上限?
小程序接口没有加缓存, 导致获取access_token的次数达到上限 {"errcode":45009,"errmsg":"reach max api daily quota limit hints: [bhgb1FiCe-YPNS3!]"} 请问这个问题怎么解决呢?
2020-03-13 - requestPayment支付审核“小程序内的支付请选择官方的接口“是什么问题?
提交小程序 代码审核被打回。 用的 uni.requestPayment 支付,。 打回原因: 1:小程序内容不符合规则: (1):小程序内的支付请选择官方的接口(https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=7_3&index=1)接入支付方式。 请根据上述原因对小程序进行修改,并重新提交代码审核。 若对上述原因无法理解,可前往反馈页面进行反馈。 [图片]
2019-12-04 - 小程序支持CSS3动画效果吗?
@-webkit-keyframes imggif1 { 0% {background-position: 0 -0%; } 100% { background-position: 0 -5000%;} } @-moz-keyframes imggif1 { 0% {background-position: 0 -0%; } 100% { background-position: 0 -5000%;} } @-ms-keyframes imggif1 { 0% {background-position: 0 -0%; } 100% { background-position: 0 -5000%;} } @keyframes imggif1 { 0% {background-position: 0 -0%; } 100% { background-position: 0 -5000%;} } .gifplay1{ -webkit-animation:imggif1 steps(1) infinite normal none; -moz--animation:imggif1 steps(1) infinite normal none; -ms-animation:imggif1 steps(1) infinite normal none; animation:imggif1 steps(1) infinite normal none; background-size:100% 100%;} 类似于这样的动画效果,为什么写到wxss文件里面就报错了?
2017-04-13