Zhen Tian
Zhen Tian
在这个页面搜索`**Foo`可以找到一个需要修改的地方
Thanks, batch queues should mitigate our case
related to #119
@ashwanthkumar I faced the same issue like @linnzha, I used gocd server and agent docker image. run gocd-server: ``` docker run -d -v /path/to/godata:/godata -v /path/to/gohome:/home/go -p8153:8153 -p8154:8154 gocd/gocd-server:v19.2.0 ```...
@linnzha no, I just use the URL above and I have read the plugin source code, it should use my endpoint, and username, but it doesn't work as my think
本以为用python 2.7.9+就可以了,但编译了2.7.12也不行,后来装了`ndg-httpsclient`可以了 [https://github.com/kennethreitz/requests/issues/749#issuecomment-19187417](https://github.com/kennethreitz/requests/issues/749#issuecomment-19187417)
@hbxeagle 你的意思是rem其实并不是根据html的fontsize来计算的吗?如果是根据html的fontsize来计算,那么1rem = 1 * html_font_size。我没看明白为何修改了系统默认字体大小,比如默认是16,但改成了18或者20px后会影响html的fontsize,即便是html的fontsize变成了18或者20,但方案3直接覆盖了fontsize的值,rem应该按照覆盖后的值进行计算
在没有设置html的fontsize的时候系统使用默认值这挺合理的,不过在设置了html的fontsize后为何rem不是根据设置的fontsize来计算而是用设置的值除以16再和系统默认值相乘? On Tue, 7 Feb 2017 at 19:12 eagle.h wrote: > 在没有设置html的fontSize值时,获取html fontSize的计算值,得到的就是defaultFontSize: > window.getComputedStyle(document.documentElement, > null).getPropertyValue('font-size') > 这时html fontSize的设置值为空: > document.documentElement.style.fontSize > > 修改系统的默认字体在Android某些机型上会影响计算值(但这个值是个近似值,所以使用1rem的宽度的计算值作为计算基准)。不管是css还是js,其实都是修改html > fontSize的设置值,不存在覆盖的问题。 > > 计算值有单独的算法,而rem是根据html...
也就是说rem的计算公式从来都是1 rem = 1 * ( html_font_size / 16 ) * default_font_size而不是 1 rem = 1 * html_font_size么? -Tian Zhen 2017-02-08 10:03 GMT+08:00 eagle.h : > 正常来说手机上浏览器的默认字体大小应该是16px(比如ios中),也就是说 defaultFontSize 一直是 16px,这样就不存在除以...
Reducer这部分ADD_FILM中返回的state结构为array,但state在使用时有state.films,是一个object而不是array