lqzhgood
lqzhgood
I think add attribute in html is better. like this `data-singlefile-save-link` `data-singlefile-down-error` ``` // "/download/502.png" is unstable resources,some time is ok, some time is error. ---> ``` in `html` it...
#846 add add "saveOriginalURLsLabel" zh_CN zh_TW translate
by the way can you add **down error** flag ? e.g. "data-sf-original-src-down-error", "data-sf-original-href-down-error" now I use `src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="` to judge img down error. is to hack not accuracy
这个 PR https://github.com/ElemeFE/element/pull/21806 增加了 props `placement` 用来适应位置,但是之前的代码 created 时有给 `placement` 赋值 https://github.com/ElemeFE/element/blob/8ab1db83c537bf0b0d63bb6397ad3440811e892e/packages/date-picker/src/picker.vue#L583 说白了之前 `placement` 是 data 的对象,现在变成 props 了,然后修改就报错了
提了 PR 等合并了。 by the way…… 项目依赖的 node-sass 版本太低了,最高只能支持到 node 11 版本 ,https://github.com/sass/node-sass/releases/tag/v4.11.0 而且 node-sass 的编译环境太恶心~ 强烈建议切换到纯 js 的 sass https://www.npmjs.com/package/sass
此 bug 仅存在 2.5.19。因为 placement 仅为内部使用,且仅在 picker 初始化时被修改,其实并不会导致任何问题。 如果嫌 error 烦人,降到 2.5.18 就可以了 要么就催官方尽快合并 PR https://github.com/ElemeFE/element/pull/21908
https://github.com/ElemeFE/element/issues/22039
> Removing the prop entirely from the NewPopper might cause some issue no? > > Surely replacing the createdAt hook code that sets the value with a prop default value...
我刚好在做一个消息展示的 “系统”,把QQ、微信、短信、通话、邮件都整合在一起查看。 前端已经写完了,后端数据获取只剩微信了。 目前微信用的 wxbackup.imxfd.com 不过我想开源做,前者不是开源的,所以直接把你这里整合一下就完工了。 我现在不知道微信数据库里面数据结构啥样的,我觉得原样完整输出比较好,然后还有资源的完整导出。 这有个读数据库的方法 我还没试 `https://github.com/contr4l/MicromsgHistory` 你也可以看看 `http://wxbackup.imxfd.com/demo/js/message.js` 这个的输出结构 (感觉这个就是把数据库的数据完整输出了 没做处理)。 可以的话,一起搞个大事情呗~
主要结构就分 text xml。 我的意见是在导出为 JSON 的过程中不要去解析 XML。 由前端来解析 XML 并分类格式,这样的好处是即便是未知的 XML, 前端也能显示信息(只是没适配样式) 附现在整理的 `typeMap` ``` async function typeMap(v, ov) { if (v.m_uiMessageType == 49 && _.get(v, 'm_nsContent.msg.appmsg.type') == 1) {...