jquery.ajax.跨域

ajax跨域請求會自動轉化爲get方式提交 與前端設置方式無關
前端請求:
$.ajax({

			//url:'jsonp.php',
			url:'http://test.jsonp.cn:10000/index.php?r=portal/register/test',
			type:'post',
			dataType:'script',
			success:function(){
				var json = result_json;
				alert(json.code);
			}
	})
後臺處理:
public function actionTest()
   {
      echo 'var result_json='.json_encode(array('code'=>'000000','message'=>'success'));
      exit;

   }
相關文章
相關標籤/搜索