mysql date_key 欄位屬性是date,
用laravel eloquent建立模型後 使用all() 方法,date_key 欄位只會回傳年。
不知道是模型時間格式得設定還是什麼問題,求指點點。程式碼如下:
模型:
class Rpt_ep_read extends Model
{
<code>// protected $table = 'rpt_ep_read'; protected $primaryKey = 'date_key';</code>
}
控制器
use AppModelsRptdataWebRpt_ep_read;
class TestController extends Controller {
public function test(){
<code> $data = Rpt_ep_read::all(); return $data;</code>
}
}
回傳值:
mysql
CREATE TABLE rpt_ep_read
(date_key
date NOT NULL COMMENT '時間',.
)
) ENGINE =InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
用DB::table()->get()能正常回傳
回覆內容:
模型:
class Rpt_ep_read extends Model
{
<code>// protected $table = 'rpt_ep_read'; protected $primaryKey = 'date_key';</code>
class TestController extends Controller {
public function test(){
<code> $data = Rpt_ep_read::all(); return $data;</code>
CREATE TABLE rpt_ep_read
(date_key
date NOT NULL COMMENT '時間',.
)
) ENGINE =InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
用DB::table()->get()能正常回傳
在你的
Model
下面加上public $incrementing = false; 不然Laravel
預設主鍵是自增的,會轉成int
返回