我正在使用包hashids\hashids
对通过 URL 发送的数据的 ID 进行哈希处理(例如 .../post/bsdfs/edit,'bsdfs' 是编码值)。我按照Stuart Wagner的访问器方法这样做。以下是我的做法:
use Hashids\Hashids;
class Post extends Model {
protected $appends = ['hashid'];
public function getHashidAttribute() {
$hashid = new Hashids(config('hash.keyword'));
return $hashid->encode($this->attributes['id']);
}
}
在对我得到的 ID 进行哈希处理之前post/2/edit
。在哈希过程之后,我得到了post/bsdfs/edit
,这对我来说很好。
重定向到编码路由时会出现问题。这就是我的路线的样子:
use App\Http\Controllers\PostController;
Route::get('post/{post}/edit', 'PostController@edit')->name('post.edit');
重定向后,我收到 404 错误。这是控制器接受的:
Use App\Models\Post;
class PostController extends Controller {
//PS: I don't actually know what this method is called...
public function edit(Post $post) {
return view('post.edit')->with(compact('post'));
}
}
我知道如果我使用这种方法,Laravel 正在搜索数据库中不存在的“bsdfs”ID。它应该做的是解码散列并获取 ID。有没有办法在不这样做的情况下做到这一点:
public function edit($id) {
$hashid = new Hashids(config('hash.keyword'));
$id= $hashid->decode($id);
$post = Post::find($id);
return view('post.edit')->with(compact('post'));
}
如您所见,我的目标是减少行数,同时仍保持要编码的 URL 中的数据 ID。任何帮助,将不胜感激。谢谢你。