メンバーまたはゲスト用に特定のページを準備する前に、ユーザーがログインしているかどうかを確認しています。彼らがクッキーを持っている場合、彼らはメンバーであり、そうでない場合、彼らはゲストです。
私はこれを適切に行いましたか?
function check_if_member(){
var dfd = new $.Deferred();
if (readCookie('isco')){
//adds jquery data() element "user_information"
//after making a jquery ajax post to retrieve it
//and using a template to write data to the page
//with the `success()` callback
prepare_member('member');
} else {
//reveals some HTML on the page
prepare_member('guest');
}
}
$(document).ready(function(){
//before page loads, check if user is member
$.when(check_if_member())
.then(function(){
console.log($('body').data('user_information'));
return false;
});
});
私は最終的に延期について少し理解していると思いますが、それでも私を混乱させ、これを適切に構成したのか、それともajaxリクエストまたは行のいずれかに解決または戻り行を追加する必要があるのか疑問に思います収集した情報をjqueryに保存しdata()
ます。ありがとうございました。
編集
prepare_member関数
function prepare_member(type) {
if (type == 'member') {
var user_information = readCookie('isco')
$('body').data('user_information', user_information);
var user_id = $('body').data('user_information').user_id;
$.ajax({
type: 'post',
url: "/address.php",
data: {
type: "retrieve",
user_id: user_id,
isbilling: true
},
dataType: 'json',
success: function (returnedData) {
$('body').data('user_information').billing_information = returnedData['address_0'];
//populate member billing fields
$('#member_billing_container').append('<div>').children(':last')
.vkTemplate('/member_billing_template.tmpl', returnedData, function () {
//some callback - possibly resolve promise
});
//populate member contact fields
$('#member_contact_container').append('<div>').children(':last')
.vkTemplate('/member_contact_template.tmpl', JSON.stringify(user_information), function () {
//some callback - possibly resolve promise
});
}
});
$('.guest_container, .guest').hide();
$('.member_container, .member').show();
} else {
$('.guest_container, .guest').show();
$('.member_container, .member').hide();
}
}