有誰(shuí)知道為什么數(shù)據(jù)庫(kù)通知網(wǎng)址在 // 上添加 \ ?風(fēng)景我有一個(gè)通知表,我想將 url 作為數(shù)據(jù)數(shù)組存儲(chǔ)在通知類中,但是 url 添加了 \ ,下面是我的代碼,當(dāng)我使用雄辯的 url 時(shí),它沒(méi)有得到條帶意味著存儲(chǔ)我在數(shù)據(jù)庫(kù)中傳遞的任何內(nèi)容。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" , ];}當(dāng)我調(diào)用通知類時(shí),我的數(shù)據(jù)庫(kù)中實(shí)際存儲(chǔ)了什么{"msg":"https:\/\/google.com"}看起來(lái)他們已經(jīng)添加了 mysql 預(yù)防,但是查詢生成器是無(wú)注入的,如文檔中所述,如果我錯(cuò)了,請(qǐng)糾正我,謝謝
2 回答

尚方寶劍之說(shuō)
TA貢獻(xiàn)1788條經(jīng)驗(yàn) 獲得超4個(gè)贊
通知表中實(shí)際存儲(chǔ)的是 json 格式,您可以看到它是key:value
對(duì) json
{"msg":"https:\/\/google.com"}
要獲取通知的數(shù)據(jù),您需要json_decode()
像這樣的數(shù)據(jù)
json_decode($notification->data);

繁星點(diǎn)點(diǎn)滴滴
TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超3個(gè)贊
我想到的另一個(gè)轉(zhuǎn)變是對(duì) url 進(jìn)行編碼,然后存儲(chǔ)在數(shù)據(jù)庫(kù)中
- 2 回答
- 0 關(guān)注
- 142 瀏覽
添加回答
舉報(bào)
0/150
提交
取消