积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

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

语言

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

格式

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

    X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; index index.html index.htm index.php; 本文档由 Laravel 学院提供 Laravel oken 中间件会检查 X-CSRF- TOKEN 请求头。实现方式如下,首先创建一个 meta 标签并将令牌保存到该 meta 标签: content="{{ csrf_token() }}"> 本文档由 Laravel 学院提供 Laravel 学院致力于提供优质 Laravel 中文学习资源:http://laravelacademy 攻击: $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); X-XSRF-Token Laravel 还会将 CSRF 令牌保存到名为 XSRF-TOKEN 的 Cookie 中,你可以使用该 Cookie 值来设置
    0 码力 | 377 页 | 14.56 MB | 1 年前
    3
  • pdf文档 Laravel 6.0 中文文档

    add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; index index.html index.htm index.php; charset utf-8; location / { try_files name="csrf-token" content="{{ csrf_token() }}"> 然后在 js 库(如 jQuery)中添加该令牌到所有请求头,这为基于 AJAX 的请求提供了简单、方便的方式来避免 CSRF 攻击: $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').a ttr('content') } 获取 JSON 输入值 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 255 发送 JSON 请求到应用的时候,只要 Content-Type 请求头被设置 为 application/json,都可以通过 input 方法获取 JSON 数据, 还可以通过“.”号解析数组: $name = $request->input('user
    0 码力 | 1442 页 | 14.66 MB | 1 年前
    3
  • pdf文档 Learning Laravel

    from: laravel It is an unofficial and free Laravel ebook created for educational purposes. All the content is extracted from Stack Overflow Documentation, which is written by many hardworking individuals individuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official Laravel. The content is released under Creative Commons BY-SA, and the list of contributors to each chapter are provided trademarks and registered trademarks are the property of their respective company owners. Use the content presented in this book at your own risk; it is not guaranteed to be correct nor accurate, please
    0 码力 | 216 页 | 1.58 MB | 1 年前
    3
  • pdf文档 使⽤Laravel 8 PHP主流框架打造 RESTful API

    HTTP STATUS. JSON. POST { "data": { "id": 1, "title": "我是標題⽂字", "content": "我是內容", "created_at": "2021-09-08 14:07:22", "updated_at": "2021-09-08 14:07:22" REQUEST RESPONSE JSON Accept : application/json Content-Type : application/json Content-Type : application/json { "title": "我是標題⽂字", "content": "我是內容", } HTTP狀態碼 2xx. 4xx. 5xx. RESTful title 、 content 筆記連結:https://hackmd.io/ZDoduP_oQ5WXYsO7TyJsiQ 新建單⼀資源 POST https://localhost/api/v1/articles { "data": { "id": 1, "title": "我是標題⽂字", "content": "我是內容"
    0 码力 | 22 页 | 3.41 MB | 1 年前
    3
  • pdf文档 The Laravel Handbook

    .blade.php : You can clear all the content of this file, and type

    test

    into it. Save (cmd-s or ctrl-s) and reload in the browser, the homepage content will switch to displaying this string: will render the welcome view also when the /test route is called: 15 You can show a different content by creating a new view in resources/views and using that view in the route, for example create create an errors folder in resources/views , and in there create a 404.blade.php file. Add any content, like And this will be rendered
    0 码力 | 111 页 | 14.25 MB | 1 年前
    3
  • pdf文档 Laravel 5.0 Documentation

    Response($content, $status)) ->header('Content-Type', $value); For convenience, you may also use the response helper: return response($content, $status) ->header('Content-Type' return a view as the response content, you may use the view method for convenience: return response()->view('hello')->header('Content-Type', $type); return response($content)->withCookie(cookie('name' chainable, allowing for the fluent building of responses: return response()->view('hello')->header('Content-Type', $type) ->withCookie(cookie('name', 'value')); Redirect responses are typically
    0 码力 | 242 页 | 1.44 MB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 06. HTTP & AJAX

    réponse, fermeture • HTTP 1.0 (1996) – Entêtes de requête (Host, Referer, User-Agent, …) et réponse (Content-Type, Set- Cookie, Location, …) • HTTP 1.1 (1997) – Nouveaux entêtes (Keep-alive, pipelining, cache 16 Nov 2009 08:01:35 GMT Server: Apache Location: http://www.sbb.ch/fr/ 2 Content-Length: 205 Connection: close Content-Type: text/html; charset=iso-8859-1 Content-Length: 27 Content-Type: application/x-www-form-urlencoded userid=joe&password=guessme • Outils HTTP –
    0 码力 | 11 页 | 91.09 KB | 1 年前
    3
  • pdf文档 Laravel 5.2 中文文档

    来实现验证,VerifyCsrfToken 中间件会检查 X-CSRF-TOKEN 请求头,首先创建一个 meta 标签并将令牌保存到该 meta 标签: content="{{ csrf_token() }}"> 然后在 js 库(如 jQuery)中添加该令牌到所有请求头,这为基于 AJAX 的应用提供了 简单、方便的方式来避免 CSRF 攻击: $ $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); X-XSRF-Token Laravel 还会将 CSRF 令牌保存到了名为 XSRF-TOKEN 的 Cookie 中,你可以使用该 Cookie 值来设置 X-XSRF-TOKEN Response($content, $status)) ->header('Content-Type', $value); }); 为方便起见,还可以使用辅助函数 response: Route::get('home', function () { return response($content, $status) ->header('Content-Type'
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.3 中文文档

    证,VerifyCsrfToken 中间件会检查 X-CSRF-TOKEN 请求头,首先创建一个 meta 标签并将令牌保 存到该 meta 标签: content="{{ csrf_token() }}"> 然后在 js 库(如 jQuery)中添加该令牌到所有请求头,这为基于 AJAX 的应用提供了简单、方 便的方式来避免 CSRF 攻击: $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); 4、X-XSRF-Token Laravel 还会将 CSRF 令牌保存到名为 XSRF-TOKEN 的 Cookie 中,你可以使用该 Cookie 值来设 $request->name; 使用动态属性的时候,Laravel 首先会在请求中查找参数的值,如果不存在,还会到路由参数中查 找。 获取 JSON 输入值 发送 JSON 请求到应用的时候,只要 Content-Type 请求头被设置为 application/json ,都可以通 过 input 方法获取 JSON 数据,还可以通过“.”号解析数组: $name = $request->input('user
    0 码力 | 691 页 | 9.37 MB | 1 年前
    3
  • pdf文档 Laravel 5.1 中文文档

    参数进行检查,Laravel 的 VerifyCsrfToken 中间件还会 检查 X-CSRF-TOKEN 请求头,你可以将令牌保存在”meta”标签中: content="{{ csrf_token() }}"> 创建完这个 meta 标签后,就可以在 js 库如 jQuery 中添加该令牌到所有请求头,这为基于 AJAX 的应用提供了简单、方便的方式来避免 Illuminate\Http\Response; Route::get('home', function () { return (new Response($content, $status)) ->header('Content-Type', $value); }); 为方便起见,还可以使用帮助函数 response: 本文档由 Laravel 学院(LaravelAcademy 学院(LaravelAcademy.org)提供 43 Route::get('home', function () { return response($content, $status) ->header('Content-Type', $value);}); 注意:查看完整的 Response 方法列表,请移步相应的 API 文档以及 Symfony AP 文档
    0 码力 | 307 页 | 3.46 MB | 1 年前
    3
共 13 条
  • 1
  • 2
前往
页
相关搜索词
Laravel5.6中文文档6.0LearningPHP主流框架打造RESTfulAPITheHandbook5.0DocumentationSlidesDevWeb06HTTPAJAX5.25.35.1
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩