如何在 clistview 中的所有记录中保持变量值使用
How to keep variable value use throughout all records in clistview
我用过clistview。
我的要求是在每条记录上打印总数。
关注 randerPartial _view.php,
1 条记录
total= total+$data->amount(value 100);
total=100;
第 2 条记录
total= total+$data->amount(value 100);
total=200;
第 3 条记录
total= total+$data->amount(value 100);
total=300;
等等....
但我无法获取 total 变量的最后更新值。
它覆盖每条记录中的值。如何保持变量的更新和使用。
更好的解决方案是在您的控制器中创建一个变量,例如
class AbcController extends Controller
{
public $total=0;
}
然后在您的 renderPartial _view.php 中使用它,例如
$this->total += $data->amount(value 100);
我用过clistview。
我的要求是在每条记录上打印总数。
关注 randerPartial _view.php,
1 条记录
total= total+$data->amount(value 100);
total=100;
第 2 条记录
total= total+$data->amount(value 100);
total=200;
第 3 条记录
total= total+$data->amount(value 100);
total=300;
等等....
但我无法获取 total 变量的最后更新值。
它覆盖每条记录中的值。如何保持变量的更新和使用。
更好的解决方案是在您的控制器中创建一个变量,例如
class AbcController extends Controller
{
public $total=0;
}
然后在您的 renderPartial _view.php 中使用它,例如
$this->total += $data->amount(value 100);