我对laravel很新,并且在一个问题上严重受挫。我试图通过// Fetch all the details element.
const details = Array.from(document.querySelectorAll("details"));
// Add the onclick listeners.
details.forEach((targetDetail) => {
targetDetail.addEventListener("click", () => {
// Close all the details that are not targetDetail.
details.forEach((detail) => {
if (detail !== targetDetail) {
detail.removeAttribute("open");
}
});
});
});
标记将我的laravel Web应用程序重定向到外部链接,但它不会删除以前的URL。你能告诉我我在哪里做错了,这样我才能解决这个问题......
这是代码
<details>
<summary>1</summary>Demo 1
</details>
<details>
<summary>2</summary>Demo 2
</details>
<details>
<summary>3</summary>Demo 3
</details>
答案 0 :(得分:3)
您可以使用:
<a href="{{ $pick_data['links']->facebook }}" >Go to Facebook</a>
答案 1 :(得分:0)
url()
函数适用于应用程序中的路由,而不适用于外部URL。
我会将url的内容放在一个视图变量中:
$links = new \stdClass();
$links->facebook = 'https://facebook.com';
return view('main', [
'pickdata' => ['links' => $links]
]);
并在main.blade.php
{{$pickdata['links']->facebook}}