溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

thinkPHP商城公告功能開發(fā)問題的示例分析

發(fā)布時間:2021-08-27 11:27:48 來源:億速云 閱讀:138 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“thinkPHP商城公告功能開發(fā)問題的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習一下“thinkPHP商城公告功能開發(fā)問題的示例分析”這篇文章吧。

效果如下

thinkPHP商城公告功能開發(fā)問題的示例分析

1.定在頭部

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

2.ajax處理json數(shù)據(jù)

// 獲取商城公告
function getNotice() { // 獲取公告函數(shù)
  var res;
  $.ajax({
    type: "POST",
    url: "{sh::U('Store/Mall/ajaxGetNotice',array('mid'=>$mid))}",
    dataType:'json', // 設(shè)為json之后,就能夠很好的處理獲取的json數(shù)據(jù),json.status
    async: false,
    success: function(json){
      res = json;
    }
  });
  return res;
}

設(shè)置dataType:'json'之后,json數(shù)據(jù)就直接可以通過json.的方式處理了。

3.最后加載,頁面更好看。

$(document).ready(function(e) { // 主函數(shù)
  // 獲取公告
  var action_name = "{sh::ACTION_NAME}"; // 頁面使用thinkphp常量
  var json = getNotice();
  if ( action_name == 'index' && json.status == 1) { // 首頁并且公告存在
    $(".top").css("margin-top", "70px"); // jquery設(shè)置css
    $(".main-sidebar").css("top" ,"70px");
    var html = '';
    $.each(json.info, function(i, n){ // n為文本內(nèi)容
      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;
      // 獲取有效的,且結(jié)束時間大于當前時間的,或者日期等于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') ;

巧妙的處理了這種邏輯關(guān)系。

以上是“thinkPHP商城公告功能開發(fā)問題的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI