修改方法
打开"设置"(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);
});
网友评论