<?php foreach($editData as $editData){your data}
我知道在这样的vuejs中检索数据
class GrandParent < ActiveRecord::Base
has_many :parents
has_many :children, through: :parents
end
class Parent < ActiveRecord::Base
has_many :children
belongs_to :grand_parent
end
class Child < ActiveRecord::Base
belongs_to :parent
end
但我的疑惑是:
我可以在循环php中检索数据,例如我想这样做:
Child.where(grand_parent.value: TRUE)
答案 0 :(得分:0)
根据我在您的问题中理解的内容,您希望返回数据列表。你需要一个数组容器。
<?php
$arr = [];
foreach($editData as $editData){
$arr[] = $editData;
}
echo json_encode($arr);
?>