自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 laravel 6 更换Input 为 Request门面、并向数据库中插入数据的实例

laravel 6 更换Input 为 Request门面,并向数据库中插入数据的实例laravel 5 的方法如下use Illuminate\Http\Request;use Input;//需要自己定义public function add(){ if(Input::method() == 'POST'){ $data = Input::exce...

2020-03-06 22:47:07 1013 1

原创 laravel 6 报错Symfony\Component\HttpFoundation\Request::isMethod() should not be called statically

laravel 6 使用Request 时报错Request::isMethod() should not be called staticallyErrorExceptionNon-static method Symfony\Component\HttpFoundation\Request::isMethod() should not be called statically找到的英文提示...

2020-03-06 09:46:34 1061

翻译 laravel 6 Ajax Request应用举例

第一步:创建Routesroutes/web.phpRoute::get('ajaxRequest', 'AjaxController@ajaxRequest');Route::post('ajaxRequest', 'AjaxController@ajaxRequestPost')->name('ajaxRequest.post');第二步:创建Controllerapp/Ht...

2020-03-05 19:13:15 235

原创 php7链接mysql8报错SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES)

使用环境:windows 7 下wampserver 3.2.0-64bitmysql版本8.0.18 端口号:3308php版本7.3.12测试的源码:<?php$servername = "localhost";$username = "root";$password = "root"; try { $conn = new PDO("mysql:host=...

2020-02-24 14:34:29 7261 1

原创 开源的语音交互平台简介及对比

开源的语音交互平台以下是几款常见的开源的语音交互平台。1. CMU-SphinxCMU-Sphinx也简称为Sphinx(狮身人面像),是卡内基 - 梅隆大学( Carnegie Mellon University,CMU)开发的一款开源的语音识别系统, 它包括一系列的语音识别器和声学模型训练工具。Sphinx有多个版本,其中Sphinx1~3是C语言版本的,而Sphinx4是Java版的...

2020-02-06 15:56:27 2480

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除