- 更换https证书后,用户使用会造成小程序后台宕机?
python 启动的https ,+域名, 然后转发到Java,一死的时候。 java 程序单独也访问不上了,然后看服务器端口连接, 几十个tcp . 不释放,前天换了https证书,缓存啥的会影响用户使用小程序?
2023-04-19 - miniprogram-ci 上传第三方平台模版失败,咋整?
Error: {"errCode":-1,"errMsg":"3rd upload or preview error, dev platform ext appid not auth"} ci.Project({ appid: 'wx54f97d7e33a0973e', type: 'miniProgram', projectPath: process.cwd() + '/dist', privateKeyPath: process.cwd() + '/scripts/private.wx54f97d7e33a0973e.key', ignores: ['node_modules/**/*'], }) ext.json: { "extEnable": false, "extAppid": "wx54f97d7e33a0973e", "ext": { "companyId": "G00001", "appId": "wx8f068b1d5fdeca1d" } } 问题: 1. privateKeyPath: 如果使用第三方平台的appid,这个从何处下载? 2. 使用绑定的小程序appid,上传会报上面的错误
2021-06-04 - taro 自定义tabBar 开发工具显示正常,真机调试不显示?
import React, { Component } from 'react' import { connect } from 'react-redux'; import { switchTab } from '@tarojs/taro' import { CoverView, CoverImage, Text , View} from '@tarojs/components' import './index.scss' interface CustomTabBarState { dispatch, common, } const NORMAL_COLOR = '#999999' const SELECTED_COLOR = '#FE7741' @connect(({ common }) => ({ common, })) export default class CustomTabBar extends Component<CustomTabBarState> { state = { current: 0, } changeTab = (item: any) => { const { dispatch } =this.props; switchTab({ url: item.pagePath }) dispatch({ type: 'common/updateState', payload: { selectedPath:item.pagePath }, }) } render() { const { common:{selectedPath, tabList }} = this.props; return ( <CoverView className='tab'> {tabList.map((item, index) => { return ( <CoverView className='tab-item' onClick={this.changeTab.bind(this, item, index)} data-path={item.pagePath} key={item.text} > {/* 请使用 base64 格式,否则会存在性能问题 */} <CoverImage className='tab-item-img' src={ selectedPath === item.pagePath ? item.selectedIconPath : item.iconPath } /> <View className='tab-item-text' style={{ color: selectedPath === item.pagePath ? SELECTED_COLOR : NORMAL_COLOR, }} > {item.text} </View> </CoverView> ) })} </CoverView> ) } } [图片][图片]
2021-03-18 - 微信小程序可配置动态request的域名访问接口?
一般请求后台的接口的baseUrl 写死的,可以换成根据请求地址过滤?
2020-04-24 - 小程序内嵌H5分享后点开显示为空?
小程序内嵌H5页面,进入H5页面分享后,别人点击分享的链接点开显示为空.
2020-04-15 - 小程序的订阅信息可以跳转到分包页面?
由于有主包和分包,现在增加了模板信息,可以从订阅的信息,点击跳转到小程序的分包页面?
2020-04-10 - swiper组件,开发着工具显示正常,ios正常显示,安卓端调试有时显示有时不显示,线上体验不显?
使用的mpvue的脚手架,使用swiper组件出现此类问题,求大神指导,急!!!!
2019-11-29