' +
'
' + categoryData.name + '
' +
'
公開日:' + item.cdate.replace(/(\d{4})-(\d{2})-(\d{2})T.*/, '$1年$2月$3日') + '
' +
'
' + item.title + '
';
if (item.description) {
html += '
' + item.description + '
';
}
html += '
' +
'' +
'';
result += html;
});
result += ''
$('#similar_entries_list').html(result);
}
}
$.ajax({
url: '/admin/plugins/SearchEstraier/app/pt-recommend-api.php',
type: 'GET',
dataType: 'json',
timeout: 10000,
data: {
workspace_id: 1062,
type: 'similar',
snippet_width: 1,
limit: 4,
url: 'https:\/\/kashiwanpo.genki365.net\/G0000475\/_idx\/mymedia\/event\/7687.html',
add_attrs: ['@estraier_space_scope', '@estraier_is_contents', '@estraier_is_form', '@workspace_id'],
add_conditions: ['STREQ', 'NUMEQ', 'NUMEQ', 'NUMEQ'],
values: ['mymedia', 1, 0, 1062]
}
}).done(function (json) {
if (json.similar.length > 0) {
dispSimilarEntries(json.similar);
} else {
$('#similar_entries').css('display', 'none');
}
}).fail(function () {
$('#similar_entries').css('display', 'none');
});
}(jQuery));