我正在使用它来加载 php 函数并将它们发送到插件中的 javascript,例如:
function me_nav_query_submit() {
$urlcall = nav_me_paises(); /* fetches a large html string */
$response = json_encode($urlcall); /* encode to display using jQuery */
//header( "Content-Type: application/json" );
echo $response;
exit;
}
我在页面上插入 html,使用
function(response) {
jQuery('#navcontainer').html(response);
}
一切正常,除了我在结果的最后得到一个“空”字符串。
json_encode()
文档讨论了非 utf-8 字符上的空字符串,但情况似乎并非如此。我也试过使用utf8_encode()
没有成功。我在这里阅读了很多关于 SO 的其他问题,但其中大多数要么谈论返回为 null 或错误 UTF-8 编码的给定值,在我的情况下一切正常,然后将“null”附加到末尾。
注意:在 WP Codex 中建议定义 header() 调用,但我评论它是因为它给出了“headers already sent”错误。
有任何想法吗?
编辑这是调用的函数:
function nav_me_paises() {
?>
<ul class="navcategorias">
<?php $tquery = $_POST['wasClicked']; ?>
<?php $navligas = get_terms($tquery,'hide_empty=0') ?>
<?php foreach ($navligas as $liga) : ?>
<?php $link = get_term_link($liga); ?>
<li class="liga"><a href="<?php echo $link; ?>" ><?php echo $liga->name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php
}