- nodejs 文件上传问题
*************************服务端设置******************************** var bodyParser = require("body-parser"); app.use(bodyParser.urlencoded({ extended: false })); app.use(bodyParser.json()) ****************************服务端处理********************************* router.post('/upload', function(req, res){ var form = new multiparty.Form({uploadDir: './public/upload/fitment/'}); // 上传完成后处理 //*********************************************form.parse调用了,不起作用,这个是什么引起的?????我用网页没有问题 form.parse(req, function(err, fields, files) { console.log(err); console.log(fields); console.log(files); }); **************************客户端************************* function upload(){ wx.uploadFile({ url: 'http://******', filePath: files[index], name: 'file', header: { "content-type":"multipart/form-data"}, }) }
2017-06-12 - 右上角对齐,真机和模拟器
/* 活动Image */ .huodong{ width: 76rpx; height:66rpx; position: absolute; right: 0; float: right } <view style="width:500rpx;height:160rpx;display:inline-flex;flex-direction:column;margin:10rpx 0rpx"> ... <!-- 活动Logo --> <image class="huodong" src="/images/fitment/huodong.png"></image> </view> 在模拟器上面能正确显示在右上角,在真机里面现在右下角偏下的位置,这是为何?
2017-04-25 - scrollview适应剩余高度
page{ width:100%; height:100%; } test.wxml <view style="display:flex;flex-direction:column;width:100%;height:100%"> <text id="title" style="width:100%;height:100rpx;flex:none">test</text> <view id="content" style="width:100%;flex:1 1 auto> <scrollview style="height:100%"> <block wx:for="{{array}}" wx:key="*this"> <!-- 此处是我的节点 --> </block> </scrollview> </view> </view> 现在问题是根节点下面的内容id=title 和 id=content可以适配设备屏幕,就是id=content可以占满剩余的空间,但是这个scrollview的高度 却是里面元素的总和,按理100%应该是父节点的高度,这个要怎么解决???目前我是看到通过wx.getSystemInfo里面的屏幕宽高,然后运算之后,设置scroolview的高度,但这种方法操作起来不太好
2017-04-08 - swiper 没有显示任何内容
<swiper width="300" height="100"> <block wx:for="{{[1,2,3,4,5]}}"> <swiper-item> <text>1ooo</text> </swiper-item> </block> </swiper> 什么也没有显示,文档中关于swiper的内容拷贝下来也没有显示,找不到问题,求帮助 还有一个问题,我在测试的时候,后台可否填写IP地址?
2017-04-01