一、Reactjs Code snippets
這個插件可以幫助我們在寫React Native代碼時,快速書寫一些常用的方法,具體用法如下:
1砰碴、
rcc
快速新建一個React Component和導(dǎo)出這個組件躏筏。
import React, { Component } from 'react';
class componentName extends Component {
render() {
return (
<div>
</div>
);
}
}
export default componentName;
2、ccn
快速書寫構(gòu)造器函數(shù)
constructor(props) {
super(props);
}
3呈枉、bnd
綁定this
趁尼。防止this指向發(fā)生變化。(js中經(jīng)典問題)
this.method = this.method.bind(this);
4猖辫、met
快速定義一個方法
methodName(params) {
}
4酥泞、sst
快速調(diào)用方法this.setState()
方法來改變狀態(tài)。
this.setState()
二啃憎、All Autocomplete
這個插件可以提示你在項目中已經(jīng)打出來的組件名字芝囤,對與VCSode里面對React組件名不自動提示的問題真是大大的福利。