- 我需要的cookie數據追加在URL中的jQuery。
AcmeExtension.Php
Public function get_hash_attend($event_id,$user_id)
{
echo $event_id;
echo "<pre>";
echo $user_id;
$key = '[email protected]#[email protected]#$jks*&@';
$encrypt=$user_id."-".$event_id;
$encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $encrypt, MCRYPT_MODE_ECB);
$xyz = (base64_encode($encrypted));
$xyz = urlencode($xyz);
$xyz = str_replace("%2F",")",$xyz);
$xyz = str_replace("%3F","_",$xyz);
$xyz = str_replace("%2B","(",$xyz);
$hash='http://'.DOMAIN_NAME.'/ticket_transaction/autosubmit_advance/'.$event_id.'/'.$user_id.'/'.$xyz.'?source=oneclickEmail';
return $hash;
//$decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $d, MCRYPT_MODE_ECB);
}
js代碼
<script>
$(document).ready(function()
{
$("#attend").click(function() {
alert("attend .click() .");
$.ajax({
type:"POST",
url:"{{get_hash_attend(9,13530767)}}",
success: function(data)
{
alert(data);
$("#attend").text("Attending");
//alert(data);
}
});
});
});
</script>
問題IM面對
- 當我用URL:「{{get_hash_attend(9,13530767)}} 「 工作正常。
- 但如何獲取cookie數據,因爲用戶保存在cookie中。
- 我有$數據[$ k]的[ 'EVENT_ID'〕中樹枝
我需要:
我需要在功能從餅乾取用戶數據。
特定網址的ID。
你想讀取jQuery中的cookie值嗎? – 2014-12-09 12:45:50
我在瀏覽器中設置cookie如何獲取cookie並在url中設置 – user2818060 2014-12-09 12:47:36
$ .cookie('cookie name')會爲您提供cookie的價值,如果您使用@dtelaroli建議的插件進行回答。 – 2014-12-09 12:48:44