前端
Yatkill
这个作者很懒,什么都没留下…
展开
-
gitlab新项目 初始化
Git global setup 全局设置名字邮箱 设置过则不再需要进行操作git config --global user.name “中文名”git config --global user.email “邮箱”Create a new repositorygit clone XXXXcd 目录touch README.mdgit add README.mdgit commit...原创 2019-05-14 15:02:37 · 2090 阅读 · 0 评论 -
antd-mobile的Listview中,dataSourse使用方法
初始化ListViewXXXDataSource: new ListView.DataSource({ getRowData: (XXList: Type[], sectionID: string, rowId: string) => { return XXList[sectionID][rowId]; }, rowHasChanged: <T extends {}>...原创 2019-05-16 10:19:04 · 5503 阅读 · 0 评论 -
出现value.locale is not a function问题解决办法
1、给datepicker赋值可以输出赋值,datepicker赋值需要moment格式的数据,如果赋值了string类型的会报错 需要进行moment格式化moment(dateString)2、给普通字符串赋值如果赋值了moment类型的数据 可以通过moment(date).format(XXX)来解决,如果还不行的话可以使用date&& moment(date).la...原创 2019-06-04 11:18:45 · 21105 阅读 · 1 评论 -
noform中组件的样式问题
可能是没有在feature文件下面的index.tsx引入import ‘nowrapper/dist/antd/index.css’;或者是没有引入import ‘antd/dist/antd.less’;原创 2019-07-05 17:07:23 · 281 阅读 · 0 评论