写了一个英汉词典,具体流程:
1. 把本地文件按照{English: Chinese}的格式写入memcached服务器
2. 通过ajax提交英语单词,并返回中文释义
遇到的问题: 查询对应的单词,可以通过file_put_contents函数写入本地,证明查询到了相应的单词,在客户端,通过readyState属性可以依次看到返回1,2,3,4,但是在window.alert(type res)时显示未定义。
//这部分代码是OK的,用于读取并解析本地的txt格式词典<?php class Word{ private $query_en='#\w+\b#i'; private $query_ch='#[\x{4e00}-\x{9fa5}][\x{4e00}-\x{9fa5},\)\.\( \w]*#u'; private $arr_word=array(); private $recycle_num=100; private $fp=null; public function __construct($fileName) { $this->fp=fopen($fileName,'r') or die('打开ciba失败'); } public function readWord() { while(!feof($this->fp)) { $word=fgets($this->fp); $word=trim($word); if($word=='') continue; $en=$this->parseEn($word); $ch=$this->parseCh($word); $this->arr_word["$en"]=$ch; /* $this->recycle_num--; if($this->recycle_num==0) return; */ } } public function parseEn(&$word) { if(preg_match($this->query_en, $word, $en)) { return $en[0]; } else { echo "match english word failed<br />"; } } public function parseCh(&$word) { if(preg_match($this->query_ch, $word, $ch)) { return $ch[0]; } else { echo "match chinese failed<br />"; } } public function getWord() { return $this->arr_word; } public function __destruct() { fclose($this->fp); }}//$word=new Word('ciba.txt');//$word->readWord();//echo "<pre class="brush:php;toolbar:false">";//print_r($word->getWord());//echo ""; */?>//这部分代码也是OK的,用于将词条写入memcachedmem=new Memcache(); $this->mem->connect("127.0.0.1", 11211) or die("connect memcached failed!!!
var res=xmlhttp.responseXML;
window.alert(typeof $res);
一样吗?不一样当然不行
var res=xmlhttp.responseXML;
window.alert(typeof $res);
一样吗?不一样当然不行
sublime or notepad++
var res=xmlhttp.responseXML;
window.alert(typeof $res);
一样吗?不一样当然不行
//客户端做出如下修改 xmlhttp.onreadystatechange=function() { //window.alert(xmlhttp.readyState); if (xmlhttp.readyState==4 && xmlhttp.status==200) { var res=xmlhttp.responseText; res=eval("("+res+")"); window.alert(res); //var en=res.getElementsByTagName("en")[0].childNodes[0].nodeValue; //var ch=res.getElementsByTagName("ch")[0].childNodes[0].nodeValue; //var en=$("enWord").value; /var ch=res.en; $("chWord").innerText= en+": 的中文意思是: "+ch; } } //服务器这边改成用json传回数据,修改如下<?phpheader("content-type: plain/text; charset=utf-8");require_once "storeWord.php";if(!empty($_GET['enword'])){ $en=$_GET['enword']; $mem=new MemStore(); $ch=$mem->getWord($en); $en=$mem->filterWord($en); $res="<res><en>$en</en><ch>$ch</ch></res>"; file_put_contents('aword.txt', $res."\r\n",FILE_APPEND); //ob_start(); $res='{"'.$en.'":"'.$ch.'"}'; echo $res;}else{ file_put_contents('aword.txt', "receive NON data \r\n",FILE_APPEND);}
我就不明白了这段HTML是拿来的.* ,而且结果是在后面,ob过滤就失效了
36行应为 ob_clean();
36行应为 ob_clean();