因为CI 是外国的框架。购物逻辑和中国的不一样。所以需要改进ci 框架的 cart 类; (1)先把 cart类拷贝一份到application/libaries/下 (2)因为cart中购车中的商品名称不支持中文,所以对于我们中国人来说,是一件和痛苦的事情;所以禁用掉大概184行里代码:如下
/*** 禁止中文 外国的框架就是坑
// Validate the product name. It can only be alpha-numeric, dashes, underscores, colons or periods.
// Note: These can be user-specified by setting the $this->product_name_rules variable.
if ( ! preg_match("/^[".$this->product_name_rules."]+$/i", $items['name']))
{
log_message('error', 'An invalid name was submitted as the product name: '.$items['name'].' The name can only contain alpha-numeric characters, dashes, underscores, colons, and spaces');
return FALSE;
}
****/ (3)计算商品的种类 不符合中国逻辑 禁用掉388行
//$items += $val['qty']; 改进改代码
$items++;