gpt4 book ai didi

javascript - 从 Laravel View 中调用 url

转载 作者:行者123 更新时间:2023-12-03 06:31:21 24 4
gpt4 key购买 nike

我正在学习 Laravel 框架。在我的应用程序中,我发送一个 ajax 请求,然后我想成功调用另一个页面。我已经尝试过一些建议,但有错误。

我使用的是 ES6,我的 jsx 文件被转换为 js 文件到 public/js 目录。

resources/assets/js/是es6目录,resources/views/appPage.blade.php是 View 文件

我还在公共(public)目录中创建了 appPage.blade.php 文件,但这不起作用。

我在评论行中发布了试验及其结果

 success: function success(response) {
if (response.result) {

// Request Url: http://localhost:8000/appPage
// Status code: 404
//window.location.replace('appPage');
//window.location.href = 'appPage';

// Request Url: http://localhost:8000/%7B%7Burl(%22appPage%22)%7D%7D
// Status code: 404
//window.location.href = '{{url("appPage")}}';
}
}

有什么建议吗?谢谢。

最佳答案

您不需要在公共(public)文件夹中创建 View 文件,

{{ url("appPage") }} should be a route path that already exists

在 app/Http/routes.php 中定义一个 url 为 appPage 的路由,如下所示:

Route::get('appPage', function(){

return view('appPage');
});

我认为你需要更多的教程。 laracasts有很多教程。

关于javascript - 从 Laravel View 中调用 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38438681/

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