ThinkPHP 5.1.37 开发跨域问题解决

1.查阅 ThinkPHP 的文档,文档给出的例子:

Route::get('new/:id', 'News/read')
    ->ext('html')
    ->allowCrossDomain();

只需要在路由的尾部添加 allowCrossDomain() 即可实现跨域请求,所以我在每个需要进行跨域访问的路由后都添加了 ->allowCrossDomain(),一般的跨域问题得以解决。但是有的路由还是跨域失败?

另外的问题

2.经过百度搜索,找到原因是由于前端的 AJAX 请求通常需要携带 token 验证,所以还需要将 token 添加到 Access-Control-Allow-Headers

文档的例子是:

Route::get('new/:id', 'News/read')
    ->ext('html')
    ->header('Access-Control-Allow-Origin','thinkphp.cn')
    ->header('Access-Control-Allow-Credentials', 'true')
    ->allowCrossDomain();

按照上面的方法添加 ->header('Access-Control-Allow-Headers','token') ->allowCrossDomain();代码如下:

Route::get('your route', 'News/read')
    ->header('Access-Control-Allow-Headers', 'token')
    ->allowCrossDomain();

ok,跨域问题解决;

转载于:https://my.oschina.net/u/4094683/blog/3071017

你可能感兴趣的:(php,前端)