谢谢啦 就是嫌搞一个可有可无的后端麻烦。所以不知道有没有其他办法?谢谢
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同问,难道每个页面都要设置一遍吗?
小程序能在app.js设置页面分享后,所以页面都能实现分享吗?[代码]Page({ onShareAppMessage: function (res) { if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } return { title: '自定义转发标题', path: '/page/user?id=123', success: function(res) { // 转发成功 }, fail: function(res) { // 转发失败 } } } })[代码]只能一个页面一个页面的设置过去吗? 我想设置一处就能让这个小程序的所以页面右上角都能分享这个小程序
2019-01-03上面的描述和代码还不清楚吗?麻烦看一下上面还需要什么,所有的机型都有这个问题。
奇怪的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-09-23