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>
它的输出是我在问题顶部显示的json对象
—
Ajeesh 2013年
输出是
—
围
console.log(thisSession);
什么?
另外,
—
围
!("merchant_id" in thisSession)==0
在可以简单使用的地方使用有什么好处"merchant_id" in thisSession
?
<?php echo json_encode($_POST); ?>
什么?