- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用带有 InertiaJS 堆栈的 Laravel 8。
我在路由和资源 Controller 上使用模型绑定(bind)。
是否可以惯性地在route()函数上发送多个参数?
我无法收到 this.$inertia.put(route("rooms.update", this.form));
这是我在 Controller 中的功能
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\Room $room
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Room $room)
{
dd($room, $request->all());
}
这是vue文件上的惯性方法
this.$inertia.put(route("rooms.update", this.form));
最佳答案
试试这个:
this.$inertia.put(route("rooms.update", this.room), this.form);
假设room
存在于props
中,并且是编辑室。
关于vue.js - 具有多个参数的路由 InertiaJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66106482/
我正在使用带有 InertiaJS 堆栈的 Laravel 8。 我在路由和资源 Controller 上使用模型绑定(bind)。 是否可以惯性地在route()函数上发送多个参数? 我无法收到 t
我如何使用 laravel、Inertiajs2、vuejs3 捕获无效的 url?如果我创建文件 resources/views/errors/404.blade.php 它被触发了吗,但我不喜欢在
我正在尝试在 Laravel 8.38 - InertiaJS 0.8.4 上构建应用程序我正在使用 Vue 3作为我的前端堆栈。 我有多个布局,需要全局注册为 Vue组件,以便我可以在我的应用程序中
这是我正在使用的堆栈:Laravel、Inertiajs、React 我正在设置 Inertia SSR ,一切都已成功安装和编译。但是就在运行最终 Node 进程 (node public/js/s
大家好。我目前正在做拉威尔的一个项目。我正在使用带惯性的LALAVEL/微风VueJS。现在,在这个项目中,登录是使用Bootstrap模式组件完成的。验证和身份验证工作得很好我面临的唯一问题是,当成
我是一名优秀的程序员,十分优秀!