想象一下,我有一些 Jersey 方法:
@GET
@Path("/{param}")
public Response getMsg(@PathParam("param") String msg) {
String output = "Jersey say : " + msg;
return Response.status(200).entity(output).build();
}
我应该怎么做才能使用 css 和 js 脚本将 %param_value% 插入到巨大的 html 页面中。
// 很多html代码
// 中间某处
你的参数是:%param_value%
// 其他html代码