在我正在进行的项目中,我们将使用Nashorn,因此我需要创建此脚本引擎。任何人都可以建议,创建NashornScriptEngine
涉及哪些步骤?请指明步骤。
答案 0 :(得分:0)
以下示例: 您可以按照我的示例@github https://github.com/jamesmedice/Spring-boot---React-js
class UserController extends Controller
{
// other actions
public function update(Request $request, $id)
{
$user = User::find($id);
$user->fill($request->all()); // Do not fill unvalidated data
if (!$user->save()) {
// Handle error
// Redirect to the edit form while preserving the input
return redirect()->back()->withInput();
}
// Redirect to the 'show' page on success
return redirect()->route('users.show', ['id' => $user->id]);
}
// more actions
}