Laravel
carter_yu
小白,逐渐成为大白,努力成为大牛。(^。。^)
展开
-
Could not open input file: artisan
错误提示:在PhpStorm的终端控制(Terminal)打开artisan命令,出现下面提示的错误 Could not open input file: artisan, 很明显这是没有找到artisan文件。D:\PhpStormWorkSpace>php artisanCould not open input file: artisan错误原因:因为PhpStormWorkSpace 中存在原创 2016-12-30 12:29:51 · 10147 阅读 · 0 评论 -
PHP开发记录
本篇文章用于记录最近遇到的两个问题1 . 在HTML标签 Button 的 onclick() 属性调用script的方法,没有响应?示例代码: <form id="testFrom" action="{{url('')}}" method="post"> {{csrf_field()}} <div class="form-group"> <but原创 2017-05-03 17:14:48 · 564 阅读 · 0 评论 -
PHP提交含有CheckBox的表单,比对字符串是否含有相同字母
· 提交含有CheckBox的表单问题描述:在Form中如果含有 type 为 checkbox 的 input 标签时,提交表单后会发现,只有选中的最后一个CheckBox值被提交,之前选中的项消失了。。。解决方法:利用js循环某组input标签,把 checked = true 的input的值取出;然后,增加一个新的 Form , 将选中的值赋值给它;最后,提交新的Form 表。<body>原创 2017-05-04 18:11:11 · 490 阅读 · 0 评论 -
Laravel实现简单的API认证
个人总结Laravel - API认证的几个步骤:1、为 User 添加 api_token 字段;2、在 User 模型中的 $fillable、$hidden 添加 api_token 字段 ;3、用户创建时默认生成 api_token ;4、为 api.php 路由添加 auth:api 中间件 ;链接: https://segmentfault.com/a/1190000006215513原创 2017-07-18 18:24:42 · 6685 阅读 · 1 评论 -
Laravel VerifyCsrfToken问题
问题场景Laravel网络请求时,忽略CSRF攻击,直接进行访问。解决方法打开 app\Http\Middleware\VerifyCsrfToken.php 文件,找到$except,把不需要的验证的访问加入protected $except = [ //http://www.&&&.com/weixinChargeNotify 取消了验证 ...原创 2019-01-07 17:35:13 · 1030 阅读 · 0 评论