Results 13 comments of flight9

same problem with Cordova 7.0.1, I've tried installed 'cordova-plugin-android-support-v4', remove and re-add platform android, and still got build problem: ``` :compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no...

自己回答一下解决方案: 用 cordova platform version android 查看下 5.1.1, 可能是本项目添加 比较早, 和我目前其他项目用的 6.2.3 不匹配, 然后 用 cordova platform update android 升级一下 就可以正常 build 了。 如果说的不对请懂行的朋友指正, 谢谢。

I think the simplest way to save the diff and retrieve it is to save it to Mongodb, or other NoSql DB.

If you save the diff as a string, JSON.stringify(diff) may be with a little help to decrease the size consumed on DB.

@LinusU , I can't get 'size' from file inside fileFilter(), other fields are: { fieldname: 'xxxx', originalname: 'xxxx-xxxx.jpg', encoding: '7bit', mimetype: 'image/jpeg' } version: "multer": "^1.3.0"

的确如果按文档写: if (err) {return callback(err);} 就不会去调用 function (token, callback) {...} 所以永远都不会去缓存这个 token. 改为 if (err) {return callback(null,null);} 就可以,虽然还没读懂,谢谢 @shengbeiniao

似乎微信官方想用 tag 取代 group

@phphe I overwitten the `dragstart` hook with following codes, but the placeHolder still appears at root level. ``` dragStartHook(node) { const rootNode = node._vm.store.rootData; // guess I got rootNode correctly...

I found, on current version, if a node is 'droppable=false', another node can't be dropped behind it, even they are at the save level. (我发现现在的版本, 如果一个节点是'droppable=false', 另一个节点就不能放在其后面, 即便他们是在同一个层级里。) I think...