上一篇部落格說了ajaxgetjsonp跨域方式,需要注意的一些事項下面說一下post方式傳輸數劇以及後端接受。
先直接上ajax程式碼:
$(document).ready(function() { $('#submit1').click(function(){ var data = new FormData($("#form1")[0]); //$("form").serializeArray(); //formData = new FormData(data); data.append("serect", 12324234); console.log(data); $.ajax({ type:"POST", url:"http://test/fuck", data: data, crossDomain: true, contentType: false, processData: false, dataType: 'json', success:function(data) { } }); return false; });
一就是要在入口文件配置cros代碼如下:
$response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->header('Access-Control-Allow-Origin', '*') ->header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS, PUT, DELETE') ->header('Access-Control-Allow-Headers', 'Content-Type, Accept, Authorization, X-Requested-With, Origin')->send(); $kernel->terminate($request, $response);
AppHttpMiddlewareVerifyCsrfToken::class,
下邊上服務端上服務端>
下邊上服務端php>
public function fuck(Request $request){
$data = $request->all();
return json_encode($data); 🎜>
以上就介紹了 ajax跨域post方式,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。