2016年7月1日

django上传文件

摘要: django上传文件 template html(模板文件): <form enctype="multipart/form-data" method="POST" action="/address/upload/"> <input type="file" name="file" /> <br /> 阅读全文

posted @ 2016-07-01 18:20 Mr.风的影子 阅读(1262) 评论(0) 推荐(0) 编辑

laravel路由

摘要: 路由分类: 基本路由:接收一个URL和一个闭包 Route::get('foo/bar',function(){ //闭包函数 return 'hello world'; }) 注册路由的方法:get,post,put,delete,match,any 可以用函数url生成路由对应的URLs:$ur 阅读全文

posted @ 2016-07-01 14:09 Mr.风的影子 阅读(315) 评论(0) 推荐(0) 编辑

导航