amt: "10.00"
email: "sam@gmail.com"
merchant_id: "sam"
mobileNo: "9874563210"
orderID: "123456"
passkey: "1234"
위는 내가 다루고있는 JSON 객체입니다. 'merchant_id'키가 있는지 확인하고 싶습니다. 아래 코드를 시도했지만 작동하지 않습니다. 그것을 달성 할 수있는 방법이 있습니까?
<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); ?>
무엇입니까?