react
柒月小姐姐
这个作者很懒,什么都没留下…
展开
-
React:Ant Design Mobile中Carousel(Swiper)在React中的使用
使用Carousel(Swiper)需要注意两点:1.需要配置ant design mobile按需加载,方法如下:(1)法一:使用 babel-plugin-import(推荐):// .babelrc or babel-loader option{ "plugins": [ ["import", { libraryName: "antd-mobile", style: "c...原创 2020-02-23 22:38:52 · 4827 阅读 · 0 评论 -
React和Vue使用from data提交数据
由于axios默认发送数据时,数据格式是Request Payload,而并非我们常用的Form Data格式,PHP后端未必能正常获取到,所以在发送之前,需要使用qs模块对其进行处理。//qs是内置的模块,不需要安装import qs from 'qs'; //对表单数据进行编码,数据以键值对在http请求体重发送给服务器headers:{'Content-Type':'application/x-www-form-urlencoded'}, //qs.stringify转换为表单查询原创 2021-08-13 16:51:52 · 333 阅读 · 0 评论 -
react: 点击获取当前元素的属性值
<li className="proviceLi" data-name="北京" onClick={(e)=>this.selectProvice(e)}>北京</li>selectProvice=(e)=>{ console.log(e.currentTarget.getAttribute("data-name"))}原创 2021-08-13 16:47:52 · 1726 阅读 · 0 评论