amt: "10.00"
email: "sam@gmail.com"
merchant_id: "sam"
mobileNo: "9874563210"
orderID: "123456"
passkey: "1234"
Yukarıda ele aldığım JSON nesnesi. 'Merchant_id' anahtarının var olup olmadığını kontrol etmek istiyorum. Aşağıdaki kodu denedim, ama çalışmıyor. Bunu başarmanın bir yolu var mı?
<script>
window.onload = function getApp()
{
var thisSession = JSON.parse('<?php echo json_encode($_POST); ?>');
//console.log(thisSession);
if (!("merchant_id" in thisSession)==0)
{
// do nothing.
}
else
{
alert("yeah");
}
}
</script>
console.log(thisSession);
?
!("merchant_id" in thisSession)==0
sadece kullanabileceğiniz yerlerde kullanmanın yararı "merchant_id" in thisSession
nedir?
<?php echo json_encode($_POST); ?>
?