• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

thinkPHP商城公告功能开发问题分析_php实例

php 搞代码 4年前 (2022-01-22) 37次浏览 已收录 0个评论

本文实例分析了thinkPHP商城公告功能开发问题。分享给大家供大家参考,具体如下:

效果如下

1.定在头部

position: fixed;z-index: 999;top: 0;opacity:1;

2.ajax处理json数据

// 获取商城公告function getNotice() { // 获取公告函数  var res;  $.ajax({    type: "POST",    url: "{sh::U('Store/Mall/ajaxGetNotice',array('mid'=>$mid))}",    dataType:'json', // 设为json之后,就能够很好的处理获取的json数据,json.status    async: false,    success: function(json){      res = json;    }  });  return res;}

设置dataType:’json’之后,json数据就直接可以通过json.的方式处理了。

3.最后加载,页面更好看。

$(document).ready(function(e) { // 主函数  // 获取公告  var action_name = "{sh::ACTION_NAME}"; // 页面使用thinkphp常量  var json = getNotice();  if ( action_name == 'index' && json.status == 1) { // 首页并且公告存在    $(".top").css("margin-top", "70px"); // jquery设置css    $(".main-sidebar").css("top" ,"70px");    var html = '';    $.each(json.info, function(i, n){ // n为文本内容      html += "<li><strong>"+n.content+"</strong></li>"    });    $(".top-notice").show();    $('#notice ul').html(""+html);    $('#notice').unslider(); // 轮播  }});

4.获取sql语句的thinkphp处理

// 获取公告function ajaxGetNotice() {    if (IS_AJAX) {      $this->mid;      // 获取有效的,且结束时间大于当前时间的,或者日期等于0的公告      $mallNoticeModel = M('Mall_notice');      $where<a style="color:transparent">本@文来源gao($daima.com搞@代@#码(网5</a><strong>搞gaodaima代码</strong>['mall_id'] = $this->mid;      $where['status'] = 1;      $where['endtime'] = array(array('eq',0),array('gt',time()), 'or') ;      //SELECT * from sh_mall_notice where mall_id = 9 and status = 1 and (endtime = 0 or endtime>1458354366);      $notice = $mallNoticeModel->where($where)->order('sort desc')->select();      if (!empty($notice)) {        $this->ajaxReturn(array('status'=>'1','info'=>$notice,'msg'=>"获取成功"),'JSON');      } else {        $this->ajaxReturn(array('status'=>'2','info'=>$notice,'msg'=>"公告不存在"),'JSON');      }    }}
$where['endtime'] = array(array('eq',0),array('gt',time()), 'or') ;

巧妙的处理了这种逻辑关系。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:thinkPHP商城公告功能开发问题分析_php实例

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址