1. 專案用的YII框架,在module下面的Usertest.php有一個方法:
public function getTextArea($fieldName,$usertest_id) { return CHtml::activeTextArea($this,$fieldName,array("name"=>$fieldName."_".$usertest_id,'style'=>'rows:3;cols:20;',"ajax" => array("type"=>"POST","url"=>"/usertest/ChangeComments", "data"=>array("usertest_id"=>$usertest_id,"usertest_comments"=>"js:this.value"),"success"=>"js:alert(\"Update comments success!\")"))); }
array( 'name' => 'usertest_comments', 'id' => 'usertest_comments', 'header'=>'Comments', 'type'=>'raw', 'value'=>'$data->getTextArea(\'usertest_comments\',$data->usertest_id)', 'htmlOptions'=>array('style'=>'width:100px;'), ),
引號,直接報錯了。後面改回來時windows上竟然也報錯了,跟Linux一樣,無言了。
http://enduserfeedback.ta-mp.com:8080/usertest/
3. 反正程式總是來回折騰,最後就這樣解決了問題
以上就介紹了linux php下Ajax請求時URL路徑出現重複,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。