neverland
neverland
删除ajax方法中GET请求下的缓存header即可访问,具体原理不清楚。。 ``` if (type == "GET" || type == "get" || type == null) { xhr.open(type, url + '?' + data, true); xhr.setRequestHeader("If-Modified-Since","0"); //删除此行 xhr.send(null); } ```
Fixed in v2.0.0.
We recommend to use a build system in your project, and there is no plan to provide a .min.js version, you can send a PR to help us
you can use measure props to specify that. The default behavior should not be changed because it will cause breaking change.
You can use height or customStyles prop to custom height of dialog.
@hmontes You can get the innerWidth of window and set different height by window's width.
@zenati Try this: ``` javascript const customStyles = { height: 'auto', bottom: 'auto', top: '30%' }; ``` You can adjust the value of top property.
DatePicker 现在并没有 format 属性,你指的是 formatter 吗
v4 的 DatePicker 本身就是把值和显示的文本分开处理的,你是在使用 v4 吗