0

您好,因为它是在此处的 F3 文档中编写的:http: //fatfreeframework.com/basket#load 您可以像这样获得篮子的所有结果

$result = $basket->find(); // array of basket items, if any

但是当我尝试它时,我收到以下错误:

`内部服务器错误

Missing argument 1 for Basket::find(), called in /var/www/***/controller.php on line 55 and defined

有什么建议么?

4

2 回答 2

1

这是几天前修复的:https ://github.com/bcosca/fatfree/commit/c16332c7cc2d24ed2e98e3654e182211e6e09db5

获取夜间构建并重试;)

于 2014-02-06T21:02:46.067 回答
0

@ikkez 我在 lib/basket.php 中添加了这个函数,以便通过 id 返回购物车的项目

function findById($cartID){
    $out=array();
    foreach($_SESSION[$this->key] as $id=>$item){
        if($id==$cartID){
          return $item;
        }

    }
}

希望它会帮助某人..

于 2014-02-10T12:42:16.363 回答