0

按照我的代码:

<?php echo json_encode(array(false, true)); ?>

如何使用纯javascript来显示POST请求附带的数组的内容?我读到您需要使用 eval() 函数在 javascript 中使用 JSON,如果我使用 htmlspecialchars 会有安全风险 (XSS)?

4

1 回答 1

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);
}
})

data 包含您在 php 中回显的数组

于 2013-10-18T14:06:29.583 回答