检查 JSON 对象中是否存在密钥
2022-08-29 23:25:23
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>