美文网首页全栈笔记
webstorm 快捷输入自定义模板总结

webstorm 快捷输入自定义模板总结

作者: 小贤笔记 | 来源:发表于2018-12-24 19:51 被阅读1次

    修改方法

    打开"设置"(Ctrl + Alt + S)


    模板

    console.log()

    • 插入式
    console.log($PARAN$);
    
    • 包围式
      选中被包围的内容按 Ctrl + Alt + J
    console.log($SELECTION$);
    

    function() {}

    function($MODULE_VAR$) {
    $END$
    });
    

    alert()

    alert($PARAN$);
    

    ajax

    $.ajax({
        url: '$PARAN$',
        data:{},
        type: 'post',
        dataType: 'JSON',
        success:function(res) {}
    });
    

    axios

    axios.get(``, {}).then(res => {
        console.log(res);
    }, rej => {
        console.log(rej);
    }).catch(err => {
        console.log(err);
    });
    

    相关文章

      网友评论

        本文标题:webstorm 快捷输入自定义模板总结

        本文链接:https://www.haomeiwen.com/subject/irqtlqtx.html