您好,登錄后才能下訂單哦!
這篇文章主要介紹了兩個vscode中編寫typescript的好用插件有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
由于項目組最近準(zhǔn)備從javascript
遷移到typescript
;在使用ts過程中有部分類型定義
及代碼片段
有重復(fù);所以編寫了兩個vscode
插件;如有需要可以查閱?!就扑]:vscode基礎(chǔ)教程】
1、從剪切板json數(shù)據(jù)轉(zhuǎn)換成interface
(windows: ctrl+alt+C
, Mac : ^+?+C
)
2、選擇json數(shù)據(jù)轉(zhuǎn)換成interface
(windows: ctrl+alt+S
, Mac : ^+?+S
)
3、將json文件轉(zhuǎn)換成interface
(windows: ctrl+alt+F
, Mac : ^+?+F
)
上面的gift
圖可能播放較快,有興趣同學(xué)可以下載使用:打開vscode插件
并搜索json轉(zhuǎn)ts
使用ts
編寫react
代碼片段。
打開vscode插件
并搜索vscode-react-typescript-snippet
即可。
TypeScript (.ts)
TypeScript React (.tsx)
Trigger | Content |
---|---|
tsrcc→ | react 類式組件 |
tsrcstate | 包含Props, State, 和 constructor的類式組件 |
tsrpcc→ | react PureComponent組件 |
tsrpfc | react 函數(shù)式組件 |
tsdrpfc | 擁有default export的函數(shù)式react組件 |
tsrfc | 無狀態(tài)的函數(shù)式react組件 |
conc→ | react constructor 方法 |
cwm→ | componentWillMount 方法 |
ren→ | render 方法 |
cdm→ | componentDidMount 方法 |
cwrp→ | componentWillReceiveProps 方法 |
scu→ | shouldComponentUpdate 方法 |
cwu→ | componentWillUpdate 方法 |
cdu→ | componentDidUpdate 方法 |
cwum→ | componentWillUnmount 方法 |
sst→ | this.setState生成 |
bnd→ | 綁定語句 |
met→ | 創(chuàng)建一個方法 |
tscredux→ | 創(chuàng)建一個類式的redux,包含connect |
tsrfredux-> | 創(chuàng)建一個函數(shù)式的redux,包含connect |
imt | 生成一個import語句 |
tsrcstate
import * as React from "react"; export interface IAppProps {} export interface IAppState {} export default class App extends React.Component<IAppProps, IAppState> { constructor(props: IAppProps) { super(props); this.state = {}; } render() { return <div></div>; } }
tsrfc
import * as React from "react"; interface IAppProps {} const App: React.FC<IAppProps> = (props) => { return <div></div>; }; export default App;
tsrcredux
import * as React from "react"; import { connect } from "react-redux"; import { Dispatch } from "redux"; // you can define global interface ConnectState in @/state/connect.d import { ConnectState } from "@/state/connect.d"; export interface IAppProps {} export type ReduxType = ReturnType<typeof mapStateToProps> & ReturnType<typeof mapDispatchToProps> & IAppProps; class App extends React.Component<ReduxType> { render() { return <div></div>; } } const mapStateToProps = (state: ConnectState) => { return {}; }; const mapDispatchToProps = (dispatch: Dispatch) => { return {}; }; export default connect(mapStateToProps, mapDispatchToProps)(App);
tsrfredux
import * as React from "react"; import { connect } from "react-redux"; import { Dispatch } from "redux"; // you can define global interface ConnectState in @/state/connect.d import { ConnectState } from "@/state/connect.d"; export interface IAppProps {} export type ReduxType = ReturnType<typeof mapStateToProps> & ReturnType<typeof mapDispatchToProps> & IAppProps; const App: React.FC<ReduxType> = (props) => { return <div></div>; }; const mapStateToProps = (state: ConnectState) => { return {}; }; const mapDispatchToProps = (dispatch: Dispatch) => { return {}; }; export default connect(mapStateToProps, mapDispatchToProps)(App);
tsrpfc
import * as React from "react"; export interface IAppProps {} export function App(props: IAppProps) { return <div></div>; }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“兩個vscode中編寫typescript的好用插件有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。