事例 | jq异步提交(整理中...)
1.id url data 的获取方式 $(".join").on("click",function(){ $(".join_tan").fadeIn(); $(".bg").fadeIn(); $("#scrollbox1"...
1.id url data 的获取方式 $(".join").on("click",function(){ $(".join_tan").fadeIn(); $(".bg").fadeIn(); $("#scrollbox1"...
<script> document.oncontextmenu = function(){ return false; } document.onkeydown = function(){ if (event.ctrl...
数据表字段是create_time timestamp 默认:CURRENT_TIMESTAMP 使用时间会出现以下错误: A non well formed numeric value encountered 这是因为tp5框架会自...
$(function(){ alert($) //返回jq对象 alert($()) //返回jq对象 alert($('#box')) //返回jq对象 alert($('#box').css('color','red'))...
mvc思想 view层 home.wxml model层 home.model.js controller层 home.js 数据的加载与绑定 home模型的model层 class Home{ //构造函数 construc...
工作中使用的,觉得挺好用的,分享给大家 /** * 字符串截取,支持中文和其他编码 * @static * @access public * @param string $str 需要转换的字符串 * @param string ...
在application/extra下的配置文件都会被tp5自动加载 新建setting.php return[ 'img_prefix'=>'http://wmc.com/images' ] 使用模型的获取器拼接图片路...
设置带版本号的路由 Route::get('api/v1/banner/:id','api/v1.banner/getBanner'); 1.tp5原生sql use think\Db; Db::query("select * from u...
1.捕获异常 2.处理异常(记录日志 或者 修复异常 或者 返回客户端) 3.抛出异常 try{ $banner = ..... }catch(Exception $ex) { $err = [ 'error_code=>'1000...
AOP编程思想--面向切面编程 tp5路由: (设置了路由后pathinfo失效) Route::rule('路由表达式','路由地址','请求类型','路由参数(数组)','变量规则(数组)'); 请求类型:get post del...