我正在尝试在Ubuntu Machine上的VSCode- $.ajax({
url: 'http://maqe.github.io/json/posts.json',
tye: 'GET',
dataType: 'json',
success: function(data) {
var tmp = '';
$.each(data, function(index, element) {
tmp += ' <div class="col-sm-8 content">';
tmp += ' <h3>' + element.title + '</h3>';
tmp += ' <p>' + element.body + '</p>';
tmp += ' </div>';
});
$('.row').append(tmp);
secondAjaxCall();
},
error: function(xhr, status, errorThrown) {
console.log(errorThrown);
}
});
function secondAjaxCall() {
$.ajax({
url: 'http://maqe.github.io/json/authors.json',
tye: 'GET',
dataType: 'json',
success: function(data) {
$.each(data, function(index, element) {
var tmp = '';
tmp += ' <div class="col-sm-4">';
tmp += '<img src="' + element.avatar_url + '">';
tmp += ' <p>' + element.name + '</p>';
tmp += ' <p>' + element.role + '</p>';
tmp += ' </div>';
$('.content:eq(' + index + ')').after(tmp);
});
},
error: function(xhr, status, errorThrown) {
console.log(errorThrown);
}
});
}
中安装扩展程序,但通过Wekatime
搜索后,我在Marketplace中找不到,
我尝试对他们的website进行官方问题排查说明, 但是没有用。
我的CTRL+SHIFT+P
文件是
我如何安装它?