- 微信云开发的服务器和域名合同文件怎么取得?
腾讯微信云开发你好, 我司现投资开发一套微信小程序,基于”腾讯微信云开发“实现,现办理《增值电信业务经营许可证》工商资质注册时,南京市主管单位需要2个材料 1)服务器托管协议原件彩色扫描件及托管商 DC证书复印件(托管协议即服务器合同,有效期6个月及以上、双方盖章写日期的彩色原件扫描件) 2)域名注册证书原件彩色扫描件(域名所有人必须为申请公司,有效期要大于6个月以上) 因我们认可“微信云开发”模式的 “无需搭建服务器,即可使用云数据库、云存储、云函数、云托管等完整云端能力”, 特选择微信云作为后台开发模式。 请问选择“微信云开发”, 如何提供上面所需的2个材料?谢谢
09-09 - Refused to set unsafe header "user-agent" 怎么搞?
wx.request({ url: 'http://xxxxx', data: { name: 'ssq', issueCount: '100' }, header: { "Referer": "http://xxxxxx", "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" }, 返回错误如下: 请指教,谢谢 Refused to set unsafe header "user-agent"(env: macOS,mp,1.06.2206090; lib: 2.24.7)
2022-07-05 - 奇怪的Scrollview 问题
模拟器上可以正常运行,上下左右都能滑动的表格子,可是iPhone上就是看不到,只显示第一行,求帮助,谢谢 //index.wxml <!--tab--> <scroll-view style='width: 2518rpx; height: 1000rpx; display: block;' scroll-x scroll-y> <view class="table"> <view class="tr"> <block wx:for="{{35}}"> <block wx:if="{{item ==0}}"> <view class="th" style='width: 120rpx;'>期号</view> </block> <block wx:elif="{{item >=1 && item <=33}}"> <view class="th">{{item}}</view> </block> <block wx:elif="{{item == 34}}"> <view class="th" style='width: 120rpx'>操作</view> </block> </block> <block wx:for="{{itemlist}}"> <view class="th" style='width: 120rpx'>{{2018078}}</view> <block wx:for="{{33}}" wx:key="item"> <view class="td">{{item}}</view> </block> <view class="td" style='width: 120rpx'>组合</view> </block> </view> </view> </scroll-view> </view> //index.wxss .table { border:1px solid #dadada; border-right: 0; border-bottom: 0; width: 98%; font-size: small; display: flex; flex-direction: row; } .tr { width: 100%; height: 100%; justify-content: space-between; display: inline-block; flex-wrap: wrap; } .th { padding: 15rpx 15rpx 15rpx 15rpx; border-bottom: 1px solid #dadada; border-right: 1px solid #dadada; text-align: center; vertical-align: center; width: 36rpx; height: 36rpx; display: inline-block; font-weight: 400; background-color: #d81919 } .td { padding: 15rpx 15rpx 15rpx 15rpx; border-bottom: 1px solid #dadada; border-right: 1px solid #dadada; text-align: center; vertical-align: center; width: 36rpx; height: 36rpx; display: inline-block; }
2018-07-23