我无法在数组上调用count,它显示:
count():参数必须是实现的数组或对象 可数的。
//dd(gettype($question->options));//This line displays: "array"
$realQuestion->total_answers = count($question->options); //But this one is not working
答案 0 :(得分:2)
如果您要建立关系,请使用口才计数。
尝试使用此计数可能会对您有所帮助。
.attr('cx', function(d, i) {return (i % maxColumn) * 30})
答案 1 :(得分:0)
问题已解决,指令处于循环中,导致错误的count实际参数不是数组。
答案 2 :(得分:-1)
尝试改用the "count" aggregate method:
<h6 style="color:teal"><?php echo $question->options->count(); ?></h6>