gpt4 book ai didi

Laravel 4 - Eloquent 结果仅在分配到另一个对象内部时显示(时间戳、递增、存在)

转载 作者:行者123 更新时间:2023-12-02 12:46:21 25 4
gpt4 key购买 nike

$city = City::with('station')->where('name',$town)->first();
$townID = 1;
$townComments = TownComment::where('town_id',$townID)->get();
$city->town_comments = $townComments;

当我这样做时,town_comments的结果仅显示时间戳boolean增量存在

我在这里做错了什么?

它是这样的:

{
id: "1",
name: "tokyo",
similar_stations: {
timestamps: false,
incrementing: true,
exists: true
}
}

最佳答案

它的显示方式是这样的,因为 $townComments 是一个自动编码为 JSON 的对象,我忘记了阅读它的引用,但这是解决方案。

$city->town_comments = $townComments->toArray();

关于Laravel 4 - Eloquent 结果仅在分配到另一个对象内部时显示(时间戳、递增、存在),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17466643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com