zoukankan      html  css  js  c++  java
  • php学习笔记

    1, 自动创建控制器:

    php artisan make:controller Photo/PhotoController

    资源控制器处理的行为

    动词路径动作路由名称
    GET /resource index resource.index
    GET /resource/create create resource.create
    POST /resource store resource.store
    GET /resource/{resource} show resource.show
    GET /resource/{resource}/edit edit resource.edit
    PUT/PATCH /resource/{resource} update resource.update
    DELETE /resource/{resource} destroy resource.destroy
  • 相关阅读:
    windows 下搭建安装 sass
    mac 下搭建安装 sass
    解决 document.getElementsByClassName 在 IE8 下的兼容下的问题
    placeholder颜色
    文本两端对齐
    css3之border-color
    pip 安装自己开发模块 边调试边修改
    Go语言格式化字符
    遍历修改django bootstrap form 为 django bootstrap3
    git 合并两个仓库
  • 原文地址:https://www.cnblogs.com/Mvloveyouforever/p/8076529.html
Copyright © 2011-2022 走看看