0
json配列のSmartyテンプレートを返す方法は?例えば
:
PHP:json配列のsmartyテンプレートを返す
$smarty=new Smarty();
....
$title='some text';
echo json_encode(array('title'=>$title,'page'=>$smarty->display('templatename.tpl')));
のjQuery:
$.post('pages.php',{id:id,page:page},function(json){
$('.title').text(json.title);
$('.content').html(json.page);
},'json');
ありがとう、私は試してみます。 :) – Eugene