商品属性 sku 价格

昨天打算在项目上加上商品属性筛选功能的

改了一天 没有考虑全面 只是把属性加在了商品分类和商品上

前台选了之后可以把属性保存下来,但是价格不会跟着变动

而且以后如果要完善系统要加库存之类的东西 十分不好拓展

昨晚在网上查了很多资料,用以下方式可以实现所需要的功能

创建商品属性分类表

attr_key_id  attr_name

1                   摆台

2                   相册

3                   条柜

创建商品属性表

attr_key_id   symbol   attr_value

1                    1             尺寸

1                    2             颜色

2                    3             尺寸

2                    4             颜色

3                    5              尺寸

创建属性值表

id  symbol   value

1    1            50×50

2    1            100×100

3    2            红

4    2            黄

5    2            绿

创建sku表

sku_id   product_id   attr_symbol_path    price      stock

1            1                    1,4                            100.00   100

在后台添加商品属性模块

编辑好属性分类

创建好属性的各个值

在商品创建或者编辑的时候先选择属性分类

ajax获取分类的属性值 以select的形式选择然后输入价格以及库存值

可以添加多个属性关联插入sku表

商品页面的链接直接传入sku id

每选择一个属性 ajax获取sku id 跳转

类似于京东

CI php图片异步上传

comment.js

//上传图片
function uploadImage(file_id, file_name, image_hidden){
    $.ajaxFileUpload({
        url: '/Admin/Upload/Index', //用于文件上传的服务器端请求地址
        secureuri: false, //是否需要安全协议,一般设置为false
        dataType: 'json', //返回值类型 一般设置为json
        fileElementId: file_id, //文件上传域的ID
        data: {file_name:file_name},
        success: function(data){ //服务器成功响应处理函数 html为返回值,status为执行的状态
            if ('success' == data.status) {
                var s = data.data;
                s=s.split('/');
                var file_name='<span> '+s[8]+' </span>';
                var hd_input = '<input type="button" value="上传成功" disabled="disabled">';
                $('#'+ image_hidden).val(data.data);
                $('#'+file_id).css('display','none');
                $(file_name).insertAfter('#'+ file_id);
                $(hd_input).insertAfter('#'+ file_id);
            } else {
                alert(data.info);
            }
        },
        error: function (data, status, e){ //服务器响应失败处理函数
            alert(e);
        }
    });
    return false;
}

//多文件上传
function add_more_file(image_hidden, result_dom_id, s){
    if(!result_dom_id){
        result_dom_id = 'file_str';
    }
    var random = new Date().getTime() + Math.floor(1+Math.random()*(9999999-1000000));
    var file_input = '<input class="form-control upload_file" value="" \
        name="f'+random+'" id="f'+random+'" type="file" \
        onchange="uploadMultipleImage(\'f'+random+'\',\'f'+random+'\',\''+result_dom_id+'\',\''+s+'\')"> \
        <input type="button" id="f'+random+'_hd" value="上传成功" disabled="disabled" style="display:none"> \
        <br>';

    $("#"+image_hidden).append(file_input);
}

function uploadMultipleImage(file_id, file_name, image_hidden, up_url){
    $.ajaxFileUpload({
        url: '/admin/adminpanel/Upload/index', //用于文件上传的服务器端请求地址
        secureuri: false, //是否需要安全协议,一般设置为false
        dataType: 'json', //返回值类型 一般设置为json
        fileElementId: file_id, //文件上传域的ID
        data: {file_name:file_name,up_url:up_url},
        success: function(data){ //服务器成功响应处理函数 html为返回值,status为执行的状态
            if ('success' == data.status) {
                var old_data = $('#'+ image_hidden).val();
                if(old_data == ""){
                    var file_content = data.data;
                }else{
                    var file_content = old_data+'|'+data.data;
                }

                var s = data.file_name;
                var file_name='<span><img style="padding-top:10px;width:150px;" src="/admin/../uploadfile/samplepiece/'+s+'"> </span>';
                $('#'+ image_hidden).val(file_content);
                $('#'+file_id).css('display','none');
                $(file_name).insertAfter('#'+ file_id);
            } else {
                alert(data.info);
            }
        },
        error: function (data, status, e){ //服务器响应失败处理函数
            alert(e);
        }
    });
    return false;
}

ajaxfileupload.js

jQuery.extend({


    createUploadIframe: function(id, uri)
   {
         //create frame
            var frameId = 'jUploadFrame' + id;
            var iframeHtml = '<iframe id="' + frameId + '" name="' + frameId + '" style="position:absolute; top:-9999px; left:-9999px"';
         if(window.ActiveXObject)
         {
                if(typeof uri== 'boolean'){
               iframeHtml += ' src="' + 'javascript:false' + '"';

                }
                else if(typeof uri== 'string'){
               iframeHtml += ' src="' + uri + '"';

                }
         }
         iframeHtml += ' />';
         jQuery(iframeHtml).appendTo(document.body);

            return jQuery('#' + frameId).get(0);
    },
    createUploadForm: function(id, fileElementId, data)
   {
      //create form
      var formId = 'jUploadForm' + id;
      var fileId = 'jUploadFile' + id;
      var form = jQuery('<form  action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
      if(data)
      {
         for(var i in data)
         {
            jQuery('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form);
         }
      }
      var oldElement = jQuery('#' + fileElementId);
      var newElement = jQuery(oldElement).clone();
      jQuery(oldElement).attr('id', fileId);
      jQuery(oldElement).before(newElement);
      jQuery(oldElement).appendTo(form);



      //set attributes
      jQuery(form).css('position', 'absolute');
      jQuery(form).css('top', '-1200px');
      jQuery(form).css('left', '-1200px');
      jQuery(form).appendTo('body');
      return form;
    },

    ajaxFileUpload: function(s) {
        // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout      
        s = jQuery.extend({}, jQuery.ajaxSettings, s);
        var id = new Date().getTime()
      var form = jQuery.createUploadForm(id, s.fileElementId, (typeof(s.data)=='undefined'?false:s.data));
      var io = jQuery.createUploadIframe(id, s.secureuri);
      var frameId = 'jUploadFrame' + id;
      var formId = 'jUploadForm' + id;
        // Watch for a new set of requests
        if ( s.global && ! jQuery.active++ )
      {
         jQuery.event.trigger( "ajaxStart" );
      }
        var requestDone = false;
        // Create the request object
        var xml = {}
        if ( s.global )
            jQuery.event.trigger("ajaxSend", [xml, s]);
        // Wait for a response to come back
        var uploadCallback = function(isTimeout)
      {
         var io = document.getElementById(frameId);
            try
         {
            if(io.contentWindow)
            {
                xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null;
                    xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;

            }else if(io.contentDocument)
            {
                xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null;
                   xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document;
            }
            }catch(e)
         {
            jQuery.handleError(s, xml, null, e);
         }
            if ( xml || isTimeout == "timeout")
         {
                requestDone = true;
                var status;
                try {
                    status = isTimeout != "timeout" ? "success" : "error";
                    // Make sure that the request was successful or notmodified
                    if ( status != "error" )
               {
                        // process the data (runs the xml through httpData regardless of callback)
                        var data = jQuery.uploadHttpData( xml, s.dataType );
                        // If a local callback was specified, fire it and pass it the data
                        if ( s.success )
                            s.success( data, status );

                        // Fire the global callback
                        if( s.global )
                            jQuery.event.trigger( "ajaxSuccess", [xml, s] );
                    } else
                        jQuery.handleError(s, xml, status);
                } catch(e)
            {
                    status = "error";
                    jQuery.handleError(s, xml, status, e);
                }

                // The request was completed
                if( s.global )
                    jQuery.event.trigger( "ajaxComplete", [xml, s] );

                // Handle the global AJAX counter
                if ( s.global && ! --jQuery.active )
                    jQuery.event.trigger( "ajaxStop" );

                // Process result
                if ( s.complete )
                    s.complete(xml, status);

                jQuery(io).unbind()

                setTimeout(function()
                           {  try
                              {
                                 jQuery(io).remove();
                                 jQuery(form).remove();

                              } catch(e)
                              {
                                 jQuery.handleError(s, xml, null, e);
                              }

                           }, 100)

                xml = null

            }
        }
        // Timeout checker
        if ( s.timeout > 0 )
      {
            setTimeout(function(){
                // Check to see if the request is still happening
                if( !requestDone ) uploadCallback( "timeout" );
            }, s.timeout);
        }
        try
      {

         var form = jQuery('#' + formId);
         jQuery(form).attr('action', s.url);
         jQuery(form).attr('method', 'POST');
         jQuery(form).attr('target', frameId);
            if(form.encoding)
         {
            jQuery(form).attr('encoding', 'multipart/form-data');
            }
            else
         {
            jQuery(form).attr('enctype', 'multipart/form-data');
            }
            jQuery(form).submit();

        } catch(e)
      {
            jQuery.handleError(s, xml, null, e);
        }

      jQuery('#' + frameId).load(uploadCallback  );
        return {abort: function () {}};

    },
    handleError: function( s, xhr, status, e )        {
       // If a local callback was specified, fire it
             if ( s.error ) {
                s.error.call( s.context || s, xhr, status, e );
             }

             // Fire the global callback
             if ( s.global ) {
                (s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
             }
          },
    uploadHttpData: function( r, type ) {
        var data = !type;
        data = type == "xml" || data ? r.responseXML : r.responseText;
        // If the type is "script", eval it in global context
        if ( type == "script" )
            jQuery.globalEval( data );
        // Get the JavaScript object, if JSON is used.
        if ( type == "json" )
            eval( "data = " + data );
        // evaluate scripts within html
        if ( type == "html" )
            jQuery("<div>").html(data).evalScripts();

        return data;
    }
})

html

<div class="form-group">

    <div class="col-lg-6">
        <input type="hidden" id="file_str" value="{$info['attachment']}" name="attachment"/>
        <input class="form-control upload_file" value="" name="f0" id="f0" type="file" multiple="true" onchange="uploadMultipleImage('f0','f0','file_str','samplepiece')">
        <a href="javascript:void(0);" class="add_more_file" ></a>
        <div id="more_file"></div>
    </div>
    <div class="col-lg-2">
        <div class="btn-group">
            <button onclick="add_more_file('more_file','','samplepiece')" class="btn btn-primary dropdown-toggle add_more_file" type="button">继续添加</button>
        </div>
    </div>

</div>

uplolad.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Upload extends CI_Controller
{
    function __construct()
    {
        parent::__construct();
    }

    function Index($fieldName = '')
    {
        $post = $this->input->post();
        $up_url = isset($post['up_url']) ? $post['up_url'] : '';
        $upload_path = '../uploadfile/'.$up_url.'/';

        $config['upload_path'] = $upload_path;
        $config['allowed_types'] = 'gif|jpg|png';
//        $config['max_size'] = $this->method_config['upload'][$fieldName]['upload_size'];
        $config['overwrite'] = FALSE;
        $config['encrypt_name'] = false;
        $config['file_name'] = date('Ymdhis') . random_string('nozero', 4);

        dir_create($upload_path);//创建正式文件夹
        $this->load->library('upload', $config);

        //获取原文件名
        $file = $_FILES;

        foreach($file as $k => $v){
            if (!$this->upload->do_upload($k)){
                echo json_encode($this->upload->display_errors());
                exit;
            }
        }

        $filedata = $this->upload->data();
        $filedata['status'] = 'success';
        echo json_encode($filedata);
    }
}

分析浏览器脚本

    //Analysis browser

    function getBrowser($agent){
        if(strpos($agent,'MSIE')!==false || strpos($agent,'rv:11.0')) //ie11判断
            return "ie";
        else if(strpos($agent,'Firefox')!==false)
            return "firefox";
        else if(strpos($agent,'Chrome')!==false)
            return "chrome";
        else if(strpos($agent,'Opera')!==false)
            return 'opera';
        else if((strpos($agent,'Chrome')==false)&&strpos($agent,'Safari')!==false)
            return 'safari';
        else if((strpos($agent,'AppleWebKit')!==false))
            return 'safari';
        else
            return 'unknown';
    }

    function getBrowserVer($agent){
        if (preg_match('/MSIE\s(\d+)\..*/i', $agent, $regs))
            return $regs[1];
        elseif (preg_match('/FireFox\/(\d+)\..*/i', $agent, $regs))
            return $regs[1];
        elseif (preg_match('/Opera[\s|\/](\d+)\..*/i', $agent, $regs))
            return $regs[1];
        elseif (preg_match('/Chrome\/(\d+)\..*/i', $agent, $regs))
            return $regs[1];
        elseif ((strpos($agent,'Chrome')==false)&&preg_match('/Safari\/(\d+)\..*$/i', $agent, $regs))
            return $regs[1];
        elseif (preg_match('/AppleWebKit\/(\d+)\..*/i', $agent, $regs))
            return $regs[1];
        elseif (preg_match('/Trident\/(\d+)\..*/i', $agent, $regs))
            return $regs[1];
        else
            return 'unknow';
    }

    function get_ie_model($agent){
        if(strpos($agent,'compatible')!==false){
            return 'compatible';
        }else{
            return '';
        }
    }

    function getos($agent){
        if(strpos($agent,'Macintosh')!==false){
            return 'Mac';
        }
        else if(strpos($agent,'Android')!==false){
            return 'Android';
        }
        else if(strpos($agent,'Windows')!==false){
            return 'Windows';
        }
        else if(strpos($agent,'iPad')!==false){
            return 'iPad';
        }
        else if(strpos($agent,'iPhone')!==false){
            return 'iPhone';
        }
        else {
            return 'unknow';
        }
    }

    function transfer_browser_info(){
        ini_set('max_execution_time', '0');

        //get customer lkup arr
        $customer_list = $this->db->query("select customer_id, customer_name from evo_central_config.customer")->result_array();
        $customer_lkup = array();
        foreach($customer_list as $row){
            $customer_lkup[$row['customer_id']] = $row['customer_name'];
        }

        $sql = "select count(*) as cnt, login_name, user_agent from evo_central.user_login_trail where login_time > '2015-01-01 00:00:00' and login_password = 'OK' and login_name != '' group by login_name, user_agent" ;
        $result = $this->db->query($sql)->result_array();

        foreach($result as $row)
//        $query = $this->db->query($sql);
//        while ($row = $query->unbuffered_row())
        {
            $login_name = $row['login_name'];
            $agent = $row['user_agent'];

            #user_id,user_name,customer_id,customer_name,os,browser,version,model
            $user_info = $this->db->query("select * from evo_central_config.customer_user_online where login_name = '$login_name'")->row_array();

            $insert_arr = array();
            if(!empty($user_info)){
                $insert_arr['cnt']           = $row['cnt'];
                $insert_arr['user_id']       = $user_info['user_id'];
                $insert_arr['user_name']     = $user_info['user_name'];
                $insert_arr['customer_id']   = $user_info['customer_id'];
                $insert_arr['customer_name'] = !empty($customer_lkup[$insert_arr['customer_id']]) ? $customer_lkup[$insert_arr['customer_id']] : '' ;
                $insert_arr['os']            = $this->getos($agent);
                $insert_arr['browser']       = $this->getBrowser($agent);
                $insert_arr['version']       = $this->getBrowserVer($agent);
                $insert_arr['model']         = $this->get_ie_model($agent);
                $insert_arr['agent']         = $agent;

                $this->db->insert('evo_central.test',$insert_arr);
            }

        }
    }

PHP脚本的最大执行时间问题

php.ini 中缺省的最长执行时间是 30 秒,这是由 php.ini 中的 max_execution_time 变量指定,倘若你有一个需要颇多时间才能完成的工作,例如要发送很多电子邮件给大量收件者,或者要进行繁重的数据分析工作,服务器会在 30 秒后强行中止正在执行的程序,如何解决这个问题呢。

另一个办法是在 PHP 程序中加入 ini_set('max_execution_time', '0'),数值 0 表示没有执行时间的限制,你的程序需要跑多久便跑多久。若果你的程序仍在测试阶段,推荐你把时限设置一个实数,以免程序的错误把服务器当掉。

 <?php
 //max_execution_time=100;
 ini_set("max_execution_time", 1);  //用此function才能真正在运行时设置
 for($i=1; $i< 100000; $i++) 
 { 
  echo "No. {$i}\n"; 
  echo '<br />';
  flush(); 
 }
?>

在这里简单记录下~

CI处理大结果集

unbuffered_row() 方法

老版本不支持3.0以上才有

row() 方法一样返回单独一行结果,但是它不会预读取所有的结果数据到内存中。 如果你的查询结果不止一行,它将返回当前一行,并通过内部实现的指针来移动到下一行。

$query = $this->db->query("YOUR QUERY");

while ($row = $query->unbuffered_row())
{
    echo $row->title;
    echo $row->name;
    echo $row->body;
}

json_encode 处理中文

我们知道, 用PHP的json_encode来处理中文的时候, 中文都会被编码, 变成不可读的, 类似&rdquo;\u***&rdquo;的格式, 还会在一定程度上增加传输的数据量.

而在PHP5.4, 这个问题终于得以解决, Json新增了一个选项: JSON_UNESCAPED_UNICODE, 故名思议, 就是说, Json不要编码Unicode.

echo json_encode("中文", JSON_UNESCAPED_UNICODE);

一些常用php的header头

<?php 
header('HTTP/1.1 200 OK');  // ok 正常访问
header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在
header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301
header('Location: http://www.ruonu.com/'); //跳转到一个新的地址
header('Refresh: 10; url=http://www.ruonu.com/'); //延迟转向 也就是隔几秒跳转
header('X-Powered-By: PHP/6.0.0'); //修改 X-Powered-By信息
header('Content-language: en'); //文档语言
header('Content-Length: 1234'); //设置内容长度
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT'); //告诉浏览器最后一次修改时间
header('HTTP/1.1 304 Not Modified'); //告诉浏览器文档内容没有发生改变
 
###内容类型### 
header('Content-Type: text/html; charset=utf-8'); //网页编码 
header('Content-Type: text/plain'); //纯文本格式 
header('Content-Type: image/jpeg'); //JPG、JPEG  
header('Content-Type: application/zip'); // ZIP文件 
header('Content-Type: application/pdf'); // PDF文件 
header('Content-Type: audio/mpeg'); // 音频文件  
header('Content-type: text/css'); //css文件
header('Content-type: text/javascript'); //js文件
header('Content-type: application/json');  //json
header('Content-type: application/pdf'); //pdf 
header('Content-type: text/xml');  //xml
header('Content-Type: application/x-shockw**e-flash'); //Flash动画 
 
###### 
 
###声明一个下载的文件###
header('Content-Type: application/octet-stream'); 
header('Content-Disposition: attachment; filename="ITblog.zip"'); 
header('Content-Transfer-Encoding: binary'); 
readfile('test.zip');
######
 
###对当前文档禁用缓存###
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); 
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 
######
 
###显示一个需要验证的登陆对话框###  
header('HTTP/1.1 401 Unauthorized');  
header('WWW-Authenticate: Basic realm="Top Secret"');  
######
 
 
###声明一个需要下载的xls文件###
header('Content-Disposition: attachment; filename=ithhc.xlsx');
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Length: '.filesize('./test.xls'));  
header('Content-Transfer-Encoding: binary');  
header('Cache-Control: must-revalidate');  
header('Pragma: public');  
readfile('./test.xls');  
######
 
 
?>