- 急!急!急!web-view 重复请求地址!
以下是WXML代码 <web-view src="{{url}}">web-view> 以下是JS代码 onReady:function(){ var _self = this; var _url = business.Connect.ApiServer + '/note/home/index'; console.log(_url); _self.setData({ url: _url }); }, 以下是前端显示的日志 [图片] 以下是网站后台代码 public ActionResult Index() { try { //直接将当前请求时间记录到日志文件 System.IO.File.AppendAllText(Server.MapPath("~/test.log"), "\r\n" + System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff")); return Json(new { code = 1 }); } catch (Exception ex) { return Json(new { code = -1, error = ex.Message }); } } 以下是网站后台日志文件记录 [图片] 得到的结果显示请求两次
2017-12-02 - 右上角...事件可否自定义,而不是显示转发
如图: [图片]
2017-12-01 - 显示层次问题
[图片] 红点被图片遮住了 WXML如下: <view class="container page"> <view class='column'> <view class='item'> <image class='icon' src='../../images/200.jpg'></image> <view class='title'>测试1</view> <view class='badge'>9</view> </view> </view> </view> WXSS如下: .page .column{height: 200rpx;} .page .column .item{width: 186rpx;height: 200rpx;display:inline-block ;border-right: 2rpx #fff solid;} .page .column .last{border-right: none;} .page .column .item .icon{width: 106rpx;height:100rpx; margin:30rpx 40rpx 0rpx 40rpx;} .page .column .item .title{text-align: center;line-height: 50rpx;font-size: 32rpx;} .page .column .item .badge{text-align: center;border-radius: 20rpx;width:40rpx;height: 40rpx;line-height: 40rpx;padding: 5rpx; background-color: red;color: white;margin:-176rpx 20rpx 0rpx 136rpx;float: right;z-index: 999;}
2017-11-25 - badge
啥时候能tabbar提供badge
2017-11-24 - 开发工具啥时候支持打开多个项目,或者能同时开多个开发工具
如题,对于初学者来说一边看demo,一边自己动手尝试,来回切换实在是太痛苦了
2017-11-23 - 为什么onLoad 两次
页面如下: [图片] 脚本如下: [图片] 运行结果如下: [图片]
2017-11-23 - showToast接口需求
[图片] 1、能否提供不带icon的showToast接口。。很多场景下都需要用到 2、文字与边框的距离可否加大点,现在这样太近了,用户直接反应不好看
2017-11-23