关注我的代码:
<?php echo json_encode(array(false, true)); ?>
如何使用纯javascript来显示POST请求附带的数组内容? 我读过你需要使用eval()函数在javascript中使用JSON,如果我使用htmlspecialchars会有安全风险(XSS)吗?
答案 0 :(得分:0)
This is an example of the full javascript:
$.ajax({
type: 'POST',
url: 'draw_search_results.php',
data: {example: example},
success: function (response) {
var data = $.parseJSON(response);
console.log(data);
}
})
数据包含你在php
中回显的数组