ชื่อเล่นแบบสุ่มถูกสร้างขึ้นโดยการรวมคำคุณศัพท์และคำนามเข้าด้วยกัน
__ __ __ __ __
📝 ดูวิธีเรียกใช้ API
function getRandomNickname() {
$.ajax({
cache : false,
url : 'https://www.rivestsoft.com/nickname/getRandomNickname.ajax',
type : 'POST',
data : { lang: 'th' },
success : function(res) {
$('#randomNickName').text(res.data);
},
error : function(xhr, status) {
alert('ERROR : ' + xhr + ' : ' + status);
}
});
}