程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> xajax+smarty 問題

xajax+smarty 問題

編輯:關於PHP編程

xajax+smarty 問題 急啊!

我的refreshContent函數調用不了,我已被這個問題困擾了好幾天了 ,就是找不到問題出在哪了,希望大家幫我看看,謝謝!
代碼如下:

xajax_smarty.php

<?php
  require_once( 'Config/Config.inc.php');
  require_once('xajax/xajax_core/xajax.inc.php');
  $xajax = new xajax();
  function loadContent($n){
      global  $Smarty;
      if($n==0){
       $data[] = array('title' =>'helloworld','content' =>'<p>what is going on?</p>');
       $data[] = array('title' =>'another item','content' => '<p>nothing fancy</p>');
            }
       else if($n == 1){
           echo '=============';
             $data[] = array('title' =>'Dynamically loaded' , 'content' => '<p>There you go</p>');
            }
       $Smarty ->assign('posts' ,$data);
       $ret = $Smarty ->fetch('post.html');
       $Smarty ->clear_all_assign();
       return $ret;
  }
   function refreshContent($formValues){//調用不了
     echo "ldkfjdl";
      $response= new xajaxResponse();
      $newContent = loadContent($formValues['select_page']);
      $response ->addAssign('content' , 'innerHTML' , $newContent);
      return $response;
   }
   $xajax ->registerFunction('refreshContent');
   $xajax->processRequest();
   
   $Smarty ->assign('content' , loadContent(0));
   $Smarty ->assign('xajaxjavascript' , $xajax ->getJavascript('xajax/'));
   $Smarty ->display('main.html');
?>

post.html
<html>
<body>
<%{foreach from = $posts item = post}%>
<div>
<h2><%{$post.title}%></h2>
<%{$post.content}%>
</div>
<%{/foreach }%>
</body>
</html>

main.html
<html>
<head>
<%{$xajaxjavascript}%>
</head>
<body>
<div id="header">
  <h1>Smarty $amp;xajax</h1>
</div>
<form id="frm_switcher" method="POST" >
   更換內容
   <select name = "select_page">
     <option value="0" selected='selected'>頁面索引 0</option>
     <option value="1" > 頁面索引 1</option>
   </select>
</form>
<div id ="content">
  <%{$content}%>
</div>
</body>
</html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved