amt: "10.00"
email: "sam@gmail.com"
merchant_id: "sam"
mobileNo: "9874563210"
orderID: "123456"
passkey: "1234"
Lo anterior es el objeto JSON con el que estoy tratando. Quiero verificar si existe la clave 'merchant_id'. Intenté el siguiente código, pero no funciona. ¿Alguna forma de lograrlo?
<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
donde simplemente puede usar "merchant_id" in thisSession
?
<?php echo json_encode($_POST); ?>
?