amt: "10.00"
email: "sam@gmail.com"
merchant_id: "sam"
mobileNo: "9874563210"
orderID: "123456"
passkey: "1234"
O texto acima é o objeto JSON com o qual estou lidando. Quero verificar se a chave 'merchant_id' existe. Eu tentei o código abaixo, mas não está funcionando. Alguma maneira de conseguir isso?
<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
onde você pode simplesmente usar "merchant_id" in thisSession
?
<?php echo json_encode($_POST); ?>
?