amt: "10.00"
email: "sam@gmail.com"
merchant_id: "sam"
mobileNo: "9874563210"
orderID: "123456"
passkey: "1234"
ऊपर JSON ऑब्जेक्ट है, जिसके साथ मैं काम कर रहा हूं। मैं जांच करना चाहता हूं कि 'मर्चेंट_आईडी' कुंजी मौजूद है या नहीं। मैंने नीचे दिए गए कोड की कोशिश की, लेकिन यह काम नहीं कर रहा है। इसे हासिल करने का कोई तरीका?
<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
जहां आप बस उपयोग कर सकते हैं, वहां उपयोग करने का क्या लाभ है "merchant_id" in thisSession
?
<?php echo json_encode($_POST); ?>
?