• 技术文章 >后端开发 >php教程

    thinkPHP商城公告功能开发问题详解

    墨辰丷墨辰丷2018-05-30 09:29:25原创774
    这篇文章主要介绍了thinkPHP商城公告功能开发问题,结合实例形式分析了基于thinkPHP实现商城公告功能所涉及的ajax交互及数据库操作相关技巧,需要的朋友可以参考下

    效果如下

    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['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') ;

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

    以上就是本文的全部内容,希望对大家的学习有所帮助。


    相关推荐:

    php中登录超时检测功能实例详解

    php base64 编码与解码实例详解

    php实现连接mysql数据库的方法

    以上就是thinkPHP商城公告功能开发问题详解的详细内容,更多请关注php中文网其它相关文章!

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:thinkPHP php 开发
    上一篇:PHP实现多字段模糊匹配查询的方法 下一篇:thinkPHP实现订单数字提醒功能的方法
    千万级数据并发解决方案

    相关文章推荐

    • 用PHP实现自己的sha-256哈希算法!• 怎么提升网站的访问量和文章收录呢 • 有何位大神做过类似好玩测试的网站 • php 数据能够获取 但没法写入数据库 同一文件另一个表可能写入 • 用php备份回复mysql数据表的某一条记录的现成例子有木有
    1/1

    PHP中文网