// AJAX EX. ส่งข้อมูลแบบ POST หรือต้องการ GET ก็แค่เปลี่ยน Type
dataType ที่ผมใช้ก็มี html กับ JSON นี่ละ
beforeSend ฟังค์ชั่น ไว้ทำอะไรก่อนการส่งข้อมูล เช่นแสดงภาพ load animation
ไว้เก่งแล้วจะอธิบายเพิ่ม เอาที่ผมเข้าใจไว้ใช้งานจริงล้วนๆ
$.ajax({
type: "POST",
url: "/path",
dataType: "html",
data: ({id:id,lang:lang}),
beforeSend: function( ) {
$(".show-load").show();
},
success: function(data) {
if(data!="NULL")
{
return true;
}else{
return false;
}
},
error: function( req, status, err ) {
console.log( 'Something went wrong', status, err );
}
});
//GET POST ส่งแบบ get หรือโพสไปตรงๆ เลย
$.post( "/path", {lang:$(this).attr('href')} );
Monday, 8 June 2015
Tuesday, 24 February 2015
Script สำหรับ Code สำหรับดึงข้อมูลมาเพิ่ม Cache-Control credit my boss
Code สำหรับดึงข้อมูล script ต่าง Domain พวก library หรือ font ที่ไม่สามารถใช้ Cache-Control โดย host ของเราได้จึงต้องดึงข้อมูลมาแล้ว เพิ่ม Cache-Control ให้กับมันแล้วจึงนำมาใช้ในเว็บไซต์
Subscribe to:
Posts (Atom)