积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(15)PHP(15)Laravel(15)

语言

全部英语(9)中文(简体)(5)中文(繁体)(1)

格式

全部PDF文档 PDF(15)
 
本次搜索耗时 0.086 秒,为您找到相关结果约 15 个.
  • 全部
  • 后端开发
  • PHP
  • Laravel
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Laravel 5.2 中文文档

    }); 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 21 Route::post('foo', function () { // }); 默认情况下,routes.php 文件包含单个路由和一个路由群组,该路由群组包含的所有路由 都使用了中间件组 web,而这个中间件组为路由提供了 能。通常,我们会将所有路由定义在这个路由组中。 有效的路由方法 我们可以注册路由来响应任何 HTTP 请求: Route::get($uri, $callback); Route::post($uri, $callback); Route::put($uri, $callback); Route::patch($uri, $callback); Route::delete($uri 有时候还需要注册路由响应多个 HTTP 请求——这可以通过 match 方法来实现。或者, 甚至可以使用 any 方法注册一个路由来响应所有 HTTP 请求: Route::match(['get', 'post'], '/', function () { // }); Route::any('foo', function () { // }); 2、路由参数
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • pdf文档 Laravel 6.0 中文文档

    mass assignment protection or ev ents... $post->user()->update(['foo' => 'bar']); // Model update... provides mass assignment protection and events... $post->user->update(['foo' => 'bar']); 数组化 & toArray 重新发送验证路由 HTTP 方法 影响级别:中等 为了免除潜在的 CSRF 攻击,使用 Laravel 内置邮箱验证功能通过 路由器注册的 email/resend 路由请求方法已经由 GET 更新 为 POST。因此,你需要更新前端发送请求到该路由的请求类型。例 如,如果你是用的是内置的邮箱验证模板代码,需要像这样调整请求 方法: {{ __('Before proceeding, please check verification link.') }} {{ __('If you did not receive the email') }},
    @csrf
  • pdf文档 Laravel 5.6 中文文档

    rviceProvider; class ComposerServiceProvider extends ServiceProvider{ /** * Perform post-registration booting of services. * * @return void */ public function boot() 类来修 改路由前缀以及其他的路由群组选项:  有效的路由方法 我们可以注册路由来响应任何 HTTP 请求动作: Route::get($uri, $callback); Route::post($uri, $callback); Route::put($uri, $callback); Route::patch($uri, $callback); Route::delete($uri 方法来实现。或者,可以使用 any 方法注册一个路由来响应所有 HTTP 请求动作: Route::match(['get', 'post'], 'foo', function () { return 'This is a request from get or post'; }); Route::any('bar', function () { return 'This is
    0 码力 | 377 页 | 14.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.3 中文文档

    namespace App; use Laravel\Scout\Searchable; use Illuminate\Database\Eloquent\Model; class Post extends Model { use Searchable; } trait 被添加到模型之后,当保存模型实例的时候其信息将会被同步到搜索索引: $order 组 中 注 册 服 务 提 供 者 Illuminate\Notifications\NotificationServiceProvider。 POST 到 Logout Route::auth 方法现在为/logout 注册了一个 POST 路由取代之前的 GET 路由。这可以防止其它 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel Laravel 学院致力于提供优质 Laravel 中文学习资源 16 应用让用户从应用中退出。想要升级的话,需要将原来的退出请求转化为 POST 请求方式,或者 为/logout URI 自定义 GET 路由: Route::get('/logout', 'Auth\LoginController@logout'); 授权 使用类名调用策略方法 有时候一些策略方法只接收当前认证
    0 码力 | 691 页 | 9.37 MB | 1 年前
    3
  • pdf文档 Laravel 5.1 中文文档

    中间件参数可以再定义路由时通过:分隔中间件名称和参数名称来指定,多个参数可以通过 逗号进行分隔: 本文档由 Laravel 学院(LaravelAcademy.org)提供 3 Route::put('post/{id}', ['middleware' => 'role:editor', functio n ($id) { // }]); 更多关于中间件的内容,请查看中间件一节。 测试革新 Laravel 路由接收一个 URI 和一个闭包: Route::get('/', function () { return 'Hello World'; }); Route::post('foo/bar', function () { return 'Hello World'; }); Route::put('foo/bar', function () { }); 为多个动作注册路由 有时候需要注册一个路由来响应多个不同的 HTTP 动作,你可以使用 Route 门面的 match 方法来实现: Route::match(['get', 'post'], '/', function () { return 'Hello World'; }); 或者,还可以使用 any 方法注册一个路由响应所有 HTTP 动作: Route::any('foo'
    0 码力 | 307 页 | 3.46 MB | 1 年前
    3
  • pdf文档 Learning Laravel

    Example 187 Array Validation 188 Other Validation Approaches 189 Single Form Request Class for POST, PUT, PATCH 191 Error messages 192 Customizing error messages 192 Customising error messages within filtered by multiple methods php artisan route:list --method=GET --method=POST This will include all routes that accept GET and POST methods simultaneously. https://riptutorial.com/ 8 Running Laravel Artisan iterated over is empty, as a way to show default content .) @forelse($posts as $post)

    {{ $post }} is the post content.

    @empty

    There are no posts.

    @endforelse Within loops, a
    0 码力 | 216 页 | 1.58 MB | 1 年前
    3
  • pdf文档 Laravel 3.2 Documentation

    optional way to separate your GET and POST request logic. In a login example your controller's get_login() action would serve up the form and your controller's post_login() action would accept the posted are saying. Many of us hang out every day in the #laravel IRC channel on FreeNode. Here's a forum post explaining how you can join us. Hanging out in the IRC channel is a really great way to learn more valid for any HTTP verb (GET, POST, PUT, and DELETE): Route::any('/', function() { return "Hello World!"; }); Registering routes for other request methods: Route::post('user', function() {
    0 码力 | 139 页 | 1.13 MB | 1 年前
    3
  • pdf文档 Laravel 5.0 Documentation

    Route::post('foo/bar', function() { return 'Hello World'; }); Route::put('foo/bar', function() { // }); Route::delete('foo/bar', function() { // }); Route::match(['get', 'post'], '/', function() type="hidden" name="_token" value="{{ csrf_token() }}"> You do not need to manually verify the CSRF token on POST, PUT, or DELETE requests. The VerifyCsrfToken HTTP middleware will verify token in the request request input matches the token stored in the session. In addition to looking for the CSRF token as a "POST" parameter, the middleware will also check for the X-XSRF-TOKEN request header, which is commonly
    0 码力 | 242 页 | 1.44 MB | 1 年前
    3
  • pdf文档 The Laravel Handbook

    controller takes an action and determines what to do. For example we’ll create a form that sends a POST request to the /dogs route. The router will say “this controller is in charge” and will tell us that perform actions, like adding data to the database, or updating it. If you’re unsure what is a POST request, check my HTTP tutorial. We will start by adding a create method to the controller to handle the form, so we can store that to the database. Before doing so, in routes/web.php we add the POST /dogs route handle controller and we assign it the name dog.create We also add a /dogs route
    0 码力 | 111 页 | 14.25 MB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 06. HTTP & AJAX

    4xx : Erreur Client • 5xx : Erreur Serveur Méthodes HTTP (verbes) • GET : Demander une ressource • POST : Création d’une ressource • PUT : Remplacement total d’une ressource • PATCH : Remplacement partiel moved here.

    HTTP • Requête POST : paramètres dans le corps POST /login.jsp HTTP/1.1 Host: www.mysite.com User-Agent: Mozilla/4.0 Content-Length: 27 4https://www.mnot.net/blog/2012/09/05/patch 5https://soabits.blogspot.ch/2013/01/http-put-patch-or-post-partial-updates.html 6https://web.archive.org/web/20110102130434/http://www.adaptivepath.com/idea
    0 码力 | 11 页 | 91.09 KB | 1 年前
    3
共 15 条
  • 1
  • 2
前往
页
相关搜索词
Laravel5.2中文文档6.05.65.35.1Learning3.2Documentation5.0TheHandbookSlidesDevWeb06HTTPAJAX
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩