-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isShowNoChange时头部信息需要隐藏 #15
Comments
你说的是,当有数据变化时,这段不显示么 |
看到了,感谢 |
0.3.11 版本 还是没有隐藏头部信息,是需要传入其他参数吗? |
不是呀,当内容相同的时候,就是会显示这段。如果不同时就不会显示 |
在实际应用场景中,这两段文案是不需要的,可以加下开关控制下吗? |
这个主要是感觉没啥好的办法呀,这个功能是从 vue-code-diff 移植过来的,底层是 diff2html。diff2html 接收一段 git diff string 作为输入,然后解析输出 html 展示。而这是由前后不同的 diff string 使用 diff 库进行 diff 出的。如果内容完全相同,那 diff string 就不会有内容,因此加了这第一行保证 git diff string 有内容。如果短期内要实现你这个功能,有一种办法是如果判断内容完全相等,就直接伪造 git diff string来显示,这样确实是可以达到近似的效果的,要不要这么支持还要评估一下。长期来看我觉得还是摆脱 diff2html 的限制比较好 |
嗯嗯,了解。 不过短期还是希望能支持这个功能,体验上会好很多,哈哈。长期的话,能否摆脱 diff2html 的限制,有机会可以和大佬一起探究。 |
if (props.isShowNoChange) { oldString = 'File Without Change\tOldString: ======================== \n' + oldString newString = 'File Without Change\tNewString: ======================== \n' + newString }
这一段可不可以去掉发一个小版本呢?
The text was updated successfully, but these errors were encountered: