ettingshausen

Results 17 comments of ettingshausen

大佬,贴图都挂掉了。 macOS 下有好用绘制架构图的软件么?

补充一个使用 `apply` 的例子。 比如求一个数组的最大值,使用 `Math.max` 函数,但是这个函数入参不支持数组,只能是将多个参数逐个传入,用逗号分隔。 ```js let max = Math.max(1, 4, 8, 9, 0) ``` 有了 `apply`,就可以这么调用: ```js let arr = [1, 4, 8, 9, 0]; let max =...

希望能支持多种数据库,现在只支持MySQL

@zhaoyuguang 请问还发布么?

Try this: https://github.com/nextcloud/nextcloud-snap/wiki/Putting-the-snap-behind-a-reverse-proxy#nginx-optional-custom-path-location-for-reverse-proxy It worked for me.

@yfq512 不太像再开一个issue,个人建议,代码目录是不是整理一下 🤣

遇到了同样的问题,最后发现是 `input` 绑定的值在 `state` 中没有初始化导致。 > 这样写就会出现警告⚠ ```js state = { device: {} } render () { return ( ) } ``` > 初始化了就好了 ```js state = { name: ""...

1. 安装插件,重启。 2. 修改`configuration.yaml`,重启 > solution: [#17](https://github.com/ee02217/homeassistant-mi-heater/issues/17)

是的,默认宽度是500 > >```js >/** > * maxWidth of image for uploader to compress >* >*/ >maxWidth: PropTypes.number, >``` https://github.com/weui/react-weui/blob/f8b12cd6f383b3e07c64442623839376384e33d0/src/components/form/uploader.js#L28 https://github.com/weui/react-weui/blob/f8b12cd6f383b3e07c64442623839376384e33d0/src/components/form/uploader.js#L54

这个问题已经修复了,无奈目前最新的版本`1.2.1`并没有包含最新的代码,不知道更新了什么。 @z2014