[轉貼]Facebook Graph API 部分用戶無法取得 Email 欄位的解決方法 – 碼人日誌

過去的經驗,註冊 Facebook 帳號一定要填寫信箱並驗證,否則根本無法使用,於是我就自己重新註冊了一個新帳號,結果發現現在的 Facebook 帳號註冊,一定要填寫 Email 沒錯,也會寄驗證信沒錯,但你可以選擇用手機號碼進行驗證,然後把未驗證的信箱放者!

換句話說,每個 Facebook 帳號都一定會有 Email 沒錯,但使用者可能是用手機簡訊認證,所以這個 Email 在未驗證的情況下,即使存在,也不會透過 Graph API 傳送給 App。

來源: Facebook Graph API 部分用戶無法取得 Email 欄位的解決方法 – 碼人日誌

datatables 中文

<script type="text/javascript">
	$(document).ready( function () {
		$('#myTable tfoot td').each( function () {
			var title = $(this).text();
			var index = $(this).index();
			if ($(this).data('show')) {
				$(this).html('<input id="thead_th_'+index+'" type="text" placeholder="搜索 '+title+'" />');
			}else{
				$(this).html('');
			}
		});

		var opt={"language":{
			"sProcessing":"處理中...",
			"sLengthMenu":"顯示 _MENU_ 項結果",
			"sZeroRecords":"沒有匹配結果",
			"sInfo":"顯示第 _START_ 至 _END_ 項結果,共 _TOTAL_ 項",
			"sInfoEmpty":"顯示第 0 至 0 項結果,共 0 項",
			"sInfoFiltered":"(從 _MAX_ 項結果過濾)",
			"sSearch":"搜索:",
			"oPaginate":{
				"sFirst":"首頁",
				  "sPrevious":"上頁",
				  "sNext":"下頁",
				  "sLast":"尾頁"
				}
			}
		};

	    table = $('#myTable').DataTable(opt);

	    <?=$datatable_order?>

	    // Apply the search
		table.columns().every( function () {
		    var that = this;

		    $( 'input', this.footer() ).on( 'keyup change', function () {
		        if ( that.search() !== this.value ) {
		            that
		                .search( this.value )
		                .draw();
		        }
		    } );
		});
	} );
</script>