react ntive snippet的妙用

我们知道很多开发工具新建文件时,在新建的文件里面会多很多默认的代码,这些代码无疑会提升开发效率,今天我谈谈如何在Visual studio code里面添加模板代码。

我们当前默认新建一个文件是空的文本文件和js空文件,所以为了提高效率,改为代码模板的形式:

1.新建代码模板command+shift+P弹出下拉选项输入snippet选择第二项

2.在新的下拉列表中选择“纯文本”在新出现的文本文件的{}中添加如下内容:

"Print to console": {

        "prefix": "react native New",

        "body": [

            "import React, { Component } from 'react';\r\nimport {\r\n  Text,\r\n  View,\r\n  Image,\r\n  StyleSheet\r\n} from 'react-native';",

            "export default class YourComponentName extends Component {",

            "    constructor(props) {",

            "        super(props);",

            "    }",

            "    componentWillMount(){",

            "    }",

            "    componentDidMount(){",

            "    }",

            "    componentWillReceiveProps(nextProps){",

            "    }",

            "    shouldComponentUpdate(){",

            "    }",

            "    componentWillUpdate(){",

            "    }",

            "    componentDidUpdate(){",

            "    }",

            "    componentWillUnmount(){",

            "    }",

            "    render(){",

            "        return(",

            "            <View></View>",

            "        )",

            "    }",

            "}",

            "const styles = StyleSheet.create({",

            "})",

            "$2"

        ],

        "description": "Log output to console"

    }

点击保存,

3.新建文件在文件中输入react native New,选择提示enter一下就把reactnative的生命周期和模板代码都加进去了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值