내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

What is the SlingPostServlet?

Avatar

Employee

What is the SlingPostServlet?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

A SlingPostServlet is another way in which you can modify the AEM JCR. Using a SlingPostServlet, you can store, access, update, and delete nodes and properties. For example, the following Post creates a node:
<code>
<form action="/mynode" method="POST">
<input type="text" name="title">
<textarea name="body">
</form>
</code>

This POST action creates a node named mynode. Properties title and body are set.

For more information, see the Sling Cheatsheet.

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Employee

A SlingPostServlet is another way in which you can modify the AEM JCR. Using a SlingPostServlet, you can store, access, update, and delete nodes and properties. For example, the following Post creates a node:
<code>
<form action="/mynode" method="POST">
<input type="text" name="title">
<textarea name="body">
</form>
</code>

This POST action creates a node named mynode. Properties title and body are set.

For more information, see the Sling Cheatsheet.

Avatar

Employee