我正在使用表单请求类来验证表单,我正在尝试使用自定义URL。
protected $redirectRoute ='account.settings';
这就是我现在所拥有的。但是我想在它的末尾添加一个标签。我试过以下但是没有用。
protected $redirectRoute ='account.settings' . '#general';
它只是说:
路线[account.settings #general]未定义。
如何解决此问题?
感谢。
答案 0 :(得分:0)
使用var show = false;
function toggle () {
show = !show
displayImages()
}
function displayImages() {
if (show) {
console.log('WOW nice Pictures!')
} else {
console.log('Where did they go???')
}
}
toggle()
// logs 'WOW nice Pictures!'
toggle()
// logs 'Where did they go???'
功能:
route()