我有一个jsp文件,它显示了数据存储中的一些记录,我希望在每个条目旁边有一个删除按钮,可以将其从数据库中删除。
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page import="java.util.List" %>
<%@ page import="com.google.appengine.api.users.User" %>
<%@ page import="com.google.appengine.api.users.UserService" %>
<%@ page import="com.google.appengine.api.users.UserServiceFactory" %>
<%@ page import="com.google.appengine.api.datastore.DatastoreServiceFactory" %>
<%@ page import="com.google.appengine.api.datastore.DatastoreService" %>
<%@ page import="com.google.appengine.api.datastore.Query" %>
<%@ page import="com.google.appengine.api.datastore.Entity" %>
<%@ page import="com.google.appengine.api.datastore.FetchOptions" %>
<%@ page import="com.google.appengine.api.datastore.Key" %>
<%@ page import="com.google.appengine.api.datastore.KeyFactory" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
</head>
<body>
<%
String podlistName = request.getParameter("podlistName");
if (podlistName == null) {
podlistName = "default";
}
pageContext.setAttribute("podlistName", podlistName);
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
if (user != null) {
pageContext.setAttribute("user", user);
%>
<p>Hello, ${fn:escapeXml(user.nickname)}! (You can
<a href="<%= userService.createLogoutURL(request.getRequestURI()) %>">sign out</a>.)</p>
<%
} else {
%>
<p>Hello!
<a href="<%= userService.createLoginURL(request.getRequestURI()) %>">Sign in</a>
to include your name with podcasts you post.</p>
<%
}
%>
<%
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Key podlistKey = KeyFactory.createKey("Podlist", podlistName);
// Run an ancestor query to ensure we see the most up-to-date
// view of the Greetings belonging to the selected Podlist.
Query query = new Query("Podcast", podlistKey).addSort("date", Query.SortDirection.DESCENDING);
List<Entity> podcasts = datastore.prepare(query).asList(FetchOptions.Builder.withLimit(5));
if (podcasts.isEmpty()) {
%>
<p>Podlist '${fn:escapeXml(podlistName)}' has no items.</p>
<%
} else {
%>
<p>Items in Podlist '${fn:escapeXml(podlistName)}'.</p>
<%
for (Entity podcast : podcasts) {
pageContext.setAttribute("podcast_url",
podcast.getProperty("podcast_url"));
if (podcast.getProperty("user") == null) {
%>
<p>An anonymous person wrote:</p>
<%
} else {
pageContext.setAttribute("podcast_user",
podcast.getProperty("user"));
%>
<p><b>${fn:escapeXml(podcast_user.nickname)}</b> wrote:</p>
<%
}
%>
<blockquote>${fn:escapeXml(podcast_url)}</blockquote>
<form action="/delete" method="post">
<div><input type="submit" value="Delete Podcast" /></div>
<input type="hidden" name="podlistName" value="${fn:escapeXml(podlistName)}"/>
<!-- not sure what to put here to give a reference to this entity-->
<input type="hidden" name="podcast_id" value="$??"/>
</form>
<%
}
}
%>
<form action="/add" method="post">
<div><textarea name="podcast_url" rows="3" cols="60"></textarea></div>
<div><input type="submit" value="Post Podcast" /></div>
<input type="hidden" name="podlistName" value="${fn:escapeXml(podlistName)}"/>
</form>
</body>
</html>
下面是我的servlet:
package com.aol.sharepodder;
import java.io.IOException;
import java.util.Date;
import java.util.UUID;
import java.util.logging.Logger;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.google.appengine.api.datastore.DatastoreService;
import com.google.appengine.api.datastore.DatastoreServiceFactory;
import com.google.appengine.api.datastore.Entity;
import com.google.appengine.api.datastore.Key;
import com.google.appengine.api.datastore.KeyFactory;
import com.google.appengine.api.users.User;
import com.google.appengine.api.users.UserService;
import com.google.appengine.api.users.UserServiceFactory;
public class AddPodcastServlet extends HttpServlet {
private static final Logger log = Logger.getLogger(AddPodcastServlet.class.getName());
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
String podlistName = req.getParameter("podlistName");
Key podlistKey = KeyFactory.createKey("Podlist", podlistName);
String podcast_url = req.getParameter("podcast_url");
Date date = new Date();
Entity podcast = new Entity("Podcast", podlistKey);
podcast.setProperty("user", user);
podcast.setProperty("date", date);
podcast.setProperty("podcast_url", podcast_url);
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
datastore.put(podcast);
resp.sendRedirect("/podlist.jsp?podlistName=" + podlistName);
}
}
谢谢!!
您似乎已经在使用“podcast_id”-那么为什么不在请求中将其传递给/delete
处理程序呢?
podcast.getProperty("podcast_id")
我们似乎很难告诉您需要传递什么,因为它是您的应用程序-但您可能希望传递一个唯一引用实体的参数(无论是“key”、“podcast_id”等)。GAE中的每个实体都有一个唯一的密钥。
问题内容: 如何以一种在Windows和Linux上都可以使用的方式替换Java字符串中的所有换行符(即,没有特定于操作系统的回车/换行/换行等问题)? 我试过了(注意readFileAsString是一个将文本文件读入String的函数): 但这似乎不起作用。 如何才能做到这一点? 问题答案: 你需要text将结果设置为: 这是必需的,因为字符串是不可变的-调用不会更改原始字符串,它会返回已更改
问题内容: 我需要有关从UTF-8文件删除BOM并创建其余xml文件的副本的方法的建议。 问题答案: 有因为在UTF-8文件中的BOM的工具断裂是一个 非常 以我的经验平常的事。我不知道为什么会有这么多的否决票(但是这给了我机会去尝试赢得足够的选票来赢得特殊的SO徽章;) 更严重的是:UTF-8 BOM通常没有太大意义, 但 在规格上完全有效(尽管不建议使用)。现在的问题是,很多人不知道BOM在U
问题内容: 我正在使用HTML5构建拖放式Web应用程序,并将文件拖放到div上,当然要获取dataTransfer对象,这给了我FileList。 现在,我想删除一些文件,但是我不知道怎么办,或者甚至可能。 最好是我只想从FileList中删除它们;我没有用。但是,如果那不可能,我是否应该在与FileList交互的代码中编写检查代码?那看起来很麻烦。 问题答案: 如果只想删除几个选定的文件,则不
问题内容: 在Java中,我想删除包含文件和文件夹的文件夹中存在的所有内容。 此代码不起作用,执行此操作的最佳方法是什么? 问题答案: 如果您使用Apache Commons IO,那么它是单线的: 请参阅FileUtils.deleteDirectory() 番石榴曾经支持类似的功能: 几个版本之前已将其从Guava中删除。 虽然以上版本非常简单,但也很危险,因为它在不告诉您的情况下做出了许多假
问题内容: 我有一个带有BOM的UTF-8编码文件,并且想要删除BOM。是否有任何Linux命令行工具可从文件中删除BOM? 问题答案: BOM是Unicode代码点U + FEFF;UTF-8编码由三个十六进制值0xEF,0xBB,0xBF组成。 使用bash,您可以创建带有特殊引号形式的UTF-8 BOM,该形式实现Unicode转义:。因此,使用bash,从文本文件的开头删除UTF-8 BO
问题内容: 我有以下要在node.js中操作的文本文件(“ test.txt”): 我想删除第一行,以使其成为第一行。我怎样才能做到这一点? 问题答案: