我正在尝试显示带有符号 & 的搜索结果。但是当我从 php 渲染到 json & 转换为 &.
无论如何我可以阻止这种情况,或者在我在搜索栏中打印名称之前将其转换回&?
提前致谢!
编辑:HTML JS:
{
name: 'industries',
prefetch: 'industries_json.json',
header: '<h1><strong>Industries</strong></h1>',
template: '<p>{{value}}</p>',
engine: Hogan
},
Industries_json.json(使用 json_encode 创建)
[{"id":42535,"value":"AUTOMOBILES & COMPONENTS","type":"industries"}]
输出json的php脚本:
public function renderJSON($data){
header('Content-type: application/json');
echo json_encode($data);
}