LumenLaravel跨域POST时候 405错误怎么解决

LumenLaravel跨域POST时候 405错误怎么解决,第1张

打开IIS__>默认网站(或其他网站)————右键属性-----主目录----

配置----添加-----

可执行文件处:C:\WINDOWS\system32\inetsrv\aspdll

扩展名:html 或htm 或shtml 依自己需要而定。

动作:全部动作。(如果你传递的是html类型文件,全部动作没关系,如果

需要传递密码表单之类的,请选其他,如GET,HEAD,POST,TRACE)

选项页:启用父路径。

说明一下,遇到405错误时,并不是网页文件有问题,而是权限传递时候

遇到错误,也就是父路径权限,或许有其他的办法,但我这个办法是很好的。试过多次,效果很好。

->get(array('postsid', 'postssupport', 'postsagainst', 'usersusername', 'postspost_author', 'postspost_title', 'postspost_body'));

foreach($posts as $p){

$data[] = array(

'id' => $p -> id,

'support' => $p -> support,

'against' => $p -> against,

'username'=> $p -> username,

'post_author' => $p -> post_author,

'post_title' => $p -> post_title,

'post_body' => $p -> post_body

);

}

$res = View::make('homeindex')

-> with('posts', $data);

Cache::forever('staticPageCache_home', $res);

}

// 返回缓存的数据

return Cache::get('staticPageCache_home');

}

}

这里我用到了三个api

1) Cache::has ,这个判断是说如果当前不存在 staticPageCache_home 这个名字的缓存, 就立即去取数据

2) Cache::forever, 这个从用例文档里面可知是"永久缓存"的意思, 因为我一般都是很勤劳的,如果发表了博文,自己再去后台立即刷新一下缓存就好了, 所以不需要设置过期啊失效时间之类的, 当然这个是要按各自的具体需求来的

3) Cache::get , 这句是从缓存里面取出 staticPageCache_home 这个名字的缓存, 然后作为响应内容返回

嗯, 就这么简单, 呵呵, 一个基本的缓存功能就完成了, laravel的确是不错地!

3 为后台添加刷新缓存功能

还是贴代码吧, 不过也很简单:

// 刷新首页缓存(暂时只支持首页)

public function get_refreshcache() {

/

@var $GID admin组id

/

$GID = 1;

if ( Auth::user() -> gid === 1 ) {

$data = array();

$posts = Post::with('user')

->join('users', 'usersid', '=', 'postspost_author')

-> order_by('postscreated_at', 'desc')

->get(array('postsid', 'postssupport', 'postsagainst', 'usersusername', 'postspost_author', 'postspost_title', 'postspost_body'));

foreach($posts as $p){

$data[] = array(

'id' => $p -> id,

'support' => $p -> support,

'against' => $p -> against,

'username'=> $p -> username,

'post_author' => $p -> post_author,

'post_title' => $p -> post_title,

'post_body' => $p -> post_body

);

}

$res = View::make('homeindex')

-> with('posts', $data);

Cache::forever('staticPageCache_home', $res);

return '刷新首页缓存成功!';

}

return '对不起,只有管理员组才可进行此 *** 作!';

}

我给后台添加了一个项目, 对应这个方法, 方法内容和首页的大同小异, 取数据, 然后Cache::forever 刷新一下缓存,就这么简单,当然了,上面的Auth::user() 判断是个简单的判断,只有管理员组才能进行刷新 *** 作,呵呵

首先确认,后台的用户表,我设计表叫做badmin,每个管理员有用户名(username),有昵称(nickname),有邮箱(email),有密码(password)

这里玩个花,使用laravel的migration来建立表(实际上可以用不着使用这个工具建立表)

1 安装好最基本的laravel框架

2 创建migration文件:

/artisan migrate:make create-badmin-table

3 发现app/database/migration/下面多了一个php文件:

2014_10_19_090336_create-badmin-tablephp

4 往up和down里面增加内容;

<php

use Illuminate\Database\Schema\Blueprint;

use Illuminate\Database\Migrations\Migration;

class CreateBadminTable extends Migration {

/

Run the migrations

@return void

/

public function up()

{

Schema::create('badmin', function($table)

{

$table->increments('id');

$table->string('nickname', 100)->unique();

$table->string('username', 100)->unique();

$table->string('email', 100)->unique();

$table->string('password', 64);

$table->timestamps();

});

}

/

Reverse the migrations

@return void

/

public function down()

{

Schema::drop('badmin');

}

}

5 配置好local的database,app/config/local/databasephp

<php

return array(

'fetch' => PDO::FETCH_CLASS,

'default' => 'mysql',

'connections' => array(

'mysql' => array(

'driver' => 'mysql',

'host' => 'localhost',

'database' => ’test',

'username' => 'yejianfeng',

'password' => '123456',

'charset' => 'utf8',

'collation' => 'utf8_unicode_ci',

'prefix' => '',

),

),

'migrations' => 'migrations',

);

6 创建数据表:

/artisan migrate --env=local

这个时候去数据库看,就发现多了一张badmin表,数据结构如下:

CREATE TABLE `badmin` (

`id` int(10) unsigned NOT NULL AUTO_INCREMENT,

`nickname` varchar(100) COLLATE utf8_unicode_ci NOT NULL,

`username` varchar(100) COLLATE utf8_unicode_ci NOT NULL,

`email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,

`password` varchar(64) COLLATE utf8_unicode_ci NOT NULL,

`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',

`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',

PRIMARY KEY (`id`),

UNIQUE KEY `badmin_nickname_unique` (`nickname`),

UNIQUE KEY `badmin_username_unique` (`username`),

UNIQUE KEY `badmin_email_unique` (`email`)

) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

要问这里为什么多出了create_at和update_at,这是laravel默认为每个表创建的字段,而且在使用Eloquent进行增删改查的时候能自动更新这两个字段

7 创建个Model:

<php

use Illuminate\Auth\UserTrait;

use Illuminate\Auth\UserInterface;

use Illuminate\Auth\Reminders\RemindableTrait;

use Illuminate\Auth\Reminders\RemindableInterface;

class Badmin extends Eloquent implements UserInterface, RemindableInterface {

use UserTrait, RemindableTrait;

protected $table = 'badmin';

protected $hidden = array('password');

public static $rules = [

'nickname' => 'require|alpha_num|min:2',

'username' => 'require',

'email'=>'required|email|unique:users',

'password'=>'required|alpha_num|between:6,12|confirmed',

];

}

这里必须要implements UserInterface和RemindableInterface

8 把model和Auth关联上,修改app/config/authphp

<php

return array(

// 默认的用户验证驱动

// 可以是database或者eloquent

'driver' => 'eloquent',

// 只有驱动为eloquent的时候才有用

'model' => 'Badmin',

);

这里的driver可以是eloquent或者database,使用eloquent就告诉Auth组件说,用户认证类是Badmin这个类管的。这里的model是有命名空间的,就是说如果你的admin类是\Yejianfeng\Badmin,这里就应该改成’\Yejianfeng\Badmin’

9 好了,这个时间其实逻辑部分已经搭建完毕了,你已经可以在controller种使用

Auth::attempt(XXX) 做权限认证

Auth::user() 获取登录用户(一个Badmin类)

等。

10 下面要建立一个用户登录页面:

11 设置路由:

<php

// 不需要登录验证的接口

Route::get('/', ['as' => 'userlogin','uses'=>'UserController@getLogin']);

Route::get('user/login', ['as' => 'login', 'uses' => 'UserController@getLogin']);

Route::post('user/login', ['as' => 'login', 'uses' => 'UserController@postLogin']);

// 需要登录验证才能 *** 作的接口

Route::group(array('before' => 'auth'), function()

{

Route::get('user/logout', ['as' => 'logout', 'uses' => 'UserController@getLogout']);

Route::get('user/dashboard', ['as' => 'dashboard', 'uses' => 'UserController@getDashboard']);

});

12 设置controller:

<php

class UserController extends BaseController {

// 登录页面

public function getLogin()

{

return View::make('userlogin');

}

// 登录 *** 作

public function postLogin()

{

if (Auth::attempt(array('email'=>Input::get('email'), 'password'=>Input::get('password')))) {

return Redirect::to('user/dashboard')

->with('message', '成功登录');

} else {

return Redirect::to('user/login')

->with('message', '用户名密码不正确')

->withInput();

}

}

// 登出

public function getLogout()

{

Auth::logout();

return Redirect::to('user/login');

}

public function getDashboard()

{

return View::make('userdashboard');

}

// 添加新用户 *** 作

public function getCreate()

{

return View::make('usercreate');

}

// 添加新用户 *** 作

public function postCreate()

{

$validator = Validator::make(Input::all(), User::$rules);

if ($validator->passes()){

$bAdmin = new Badmin();

$bAdmin->nickname = Input::get('nickname');

$bAdmin->username = Input::get('username');

$bAdmin->email = Input::get('email');

$user->password = Hash::make(Input::get('password'));

$user->save();

Response::json(null);

} else {

Response::json(['message' => '注册失败'], 410);

}

}

}

13 设置下filter,app/filterphp

Route::filter('auth', function()

{

if (Auth::guest())

{

if (Request::ajax())

{

return Response::make('Unauthorized', 401);

}

else

{

return Redirect::guest('/');

}

}

});

将这里认证失败后的地址转到/ 路径

14 设置views/user/loginbladephp

以上就是关于Lumen/Laravel跨域POST时候 405错误怎么解决全部的内容,包括:Lumen/Laravel跨域POST时候 405错误怎么解决、Laravel 中大量数据查询有什么技巧吗、laravel用json格式提交数据,验证层怎么写等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10157838.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存