有谁知道为什么数据库通知网址在 // 上添加 \ ?
风景
我有一个通知表,我想将 url 作为数据数组存储在通知类中,但是 url 添加了 \ ,下面是我的代码,当我使用雄辩的 url 时,它没有得到条带意味着存储我在数据库中传递的任何内容。
public function toDatabase()
{
return [
// 'msg' => "Your Comment On ". $this->post->getAttributes()['title'] ." Was Approved Please click <a href='".route('$this->post->slug')."'>here</a> to view it",
'msg' => "https://google.com" ,
];
}
当我调用通知类时,我的数据库中实际存储了什么
{"msg":"https:\/\/google.com"}
看起来他们已经添加了 mysql 预防,但是查询生成器是无注入的,如文档中所述,如果我错了,请纠正我,谢谢
尚方宝剑之说
繁星点点滴滴