Inertia.JS 将视图呈现为字符串
Inertia.JS Render View To String
我有一个 laravel jetstream 应用程序,我想在其中将 vue 视图呈现为 html 字符串,然后我将在其他地方处理它。
我想要
$htmlStr = Inertia::render('Claims/Show', ['claim' => $claim, 'permissions' => $permissions]);
有没有办法将惯性模板渲染为字符串?
不,不可能。它呈现无法转换为 html 字符串的视图响应。
我有一个 laravel jetstream 应用程序,我想在其中将 vue 视图呈现为 html 字符串,然后我将在其他地方处理它。
我想要
$htmlStr = Inertia::render('Claims/Show', ['claim' => $claim, 'permissions' => $permissions]);
有没有办法将惯性模板渲染为字符串?
不,不可能。它呈现无法转换为 html 字符串的视图响应。