- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在创建问题后被重定向到单个问题页面
summitQuestion(){
this.question_button = true
axios.post('/api/question/ask', {
'title' : this.question.title,
'body' : this.question.body,
'tags' : this.tags,
'user_id' : this.$page.props.user.id
}).then(response=>{
this.question_button = false
console.log(response.data)
}).catch(error=>{
this.question_button = false
console.log(error.response.data.errors)
if(error.response.data.errors){
this.title_errors = error.response.data.errors.title
this.body_errors = error.response.data.errors.body
}
})
},
我有这个功能,我想要在请求成功后以 spa 方式重定向我,而无需重新加载页面以查询单个页面我正在使用惯性 js 和 jetstream 我的 laravel 路由器在下面
Route::middleware(['auth:sanctum', 'verified'])->get('/question/{question}', 'App\Http\Controllers\QuestionController@show')->name('question-single');
最佳答案
如下图所示,只需使用惯性上的访问方法即可。
this.$inertia.visit(route('question-single'), { method: 'get' });
如果您从上面的代码中得到的一切都是正确的,并且在没有重新加载页面的情况下保留了重定向,那么我想您的代码的修改将是以下示例;
summitQuestion(){
this.question_button = true
axios.post('/api/question/ask', {
'title' : this.question.title,
'body' : this.question.body,
'tags' : this.tags,
'user_id' : this.$page.props.user.id
}).then(response=>{
this.question_button = false
// console.log(response.data)
this.$inertia.visit(route('question-single'), { method: 'get', data: response.data });
}).catch(error=>{
this.question_button = false
console.log(error.response.data.errors)
if(error.response.data.errors){
this.title_errors = error.response.data.errors.title
this.body_errors = error.response.data.errors.body
}
})
},
您可以通过访问The Official Inertiajs Website 来引用它。
关于laravel - 在javascript代码中重定向惯性js和jetstream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65682075/
我在我的 Web 应用程序中构建了一个垂直 slider ,并支持 Hammer.js 的鼠标和触摸拖动事件。在拖动结束时(当用户释放鼠标按钮或将手指离开屏幕时,也称为“dragend”事件),如果上
我知道 OrbitControls.js 有一个damping 功能,它增加了全景图的平滑拖动,也称为缓动。我想实现相同的功能但不使用这个库。原因是我需要减少使用的代码量并更严格地控制鼠标或点击事
我试图让我的小行星在按下按钮后继续移动。 void Ship::applyThrust() { _v.setX(_v.getX() - sin(2 * M_PI * (_angle / 360)
我想获得 k 均值成本(scikit kmeans 中的惯性)。只是提醒一下: 成本是每个点到最近簇的距离平方和。 我在 scikit('inertia') 的成本计算之间发现了一个奇怪的差异, 以及
我正在尝试为缩放图像拖动添加动量/惯性效果(如 this example 或就像 iOs 所做的那样),但我遇到了困难。 我已经为此苦苦挣扎了一段时间,并找到了一些有用的资源(例如 this one
使用 jquery ui draggable (http://jqueryui.com/demos/draggable/) 拖动元素时如何启用缓动或惯性?我想重新创建类似于 maps.google.c
我正在使用 C++ 为 macOS 构建 SDL2 应用程序。我需要一些“基本”滚动的应用程序(如网络浏览器)。我使用 SDL_MouseWheel 事件 实现了这一点,它为我提供了一个功能齐全的
设置:我有一个水平 ScrollView 和一个 UISwipeGestureRecognizer,它在我向下滑动时会触发切换到另一个 View 。 问题:如果我水平滚动并开始向下滑动(禁用垂直滚动)
我有一个使用 Laravel 8、惯性 js、Vue.js 和 webpack 的项目。 VueJs chrome 开发工具不适用于此项目。它一直显示为未检测到,我尝试重新启动它,删除并阅读开发工具。
好的,所以我正在尝试在 iOS 中使用轮子形状制作“命运之轮”类型的效果,我可以在其中捕获并旋转轮子。我现在可以随心所欲地拖动和旋转轮子,但是一旦松开我的手指,它就会停止不动。我需要对其施加一些动量或
我是一名优秀的程序员,十分优秀!