記号 & を含む検索結果を表示しようとしています。しかし、php から json にレンダリングすると & に変換されます。
とにかくそれを防ぐことができますか、または検索バーに名前を出力する前に、それを & に変換しますか?
前もって感謝します!
編集: HTML JS:
{
name: 'industries',
prefetch: 'industries_json.json',
header: '<h1><strong>Industries</strong></h1>',
template: '<p>{{value}}</p>',
engine: Hogan
},
industry_json.json (json_encode で作成)
[{"id":42535,"value":"AUTOMOBILES & COMPONENTS","type":"industries"}]
json を出力する php-script:
public function renderJSON($data){
header('Content-type: application/json');
echo json_encode($data);
}