我是新來的春天(不是Java),我只是不能包裹我的頭圍繞所有瓷磚的東西。我想要做的是爲JavaScript包含一個佔位符的佈局。 在.net中我可以定義一個包含一些內容佔位符的母版頁。春天和佈局意見
Layout.Master
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<asp:ContentPlaceHolder ID="javascripts" runat="server" />
</head>
<body>
<asp:ContentPlaceHolder ID="content" runat="server" />
</body>
</html>
在了行動,那麼我可以定義佔位符應如何被替換的視圖。
的Index.aspx
<asp:Content ID="Content" ContentPlaceHolderID="content" runat="server">
This is the body content
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="javascripts" runat="server">
<script src="foo.js" type="text/javascript" charset="utf-8"></script>
</asp:Content>
我該怎麼辦,在春天?我已經看到VelocityLayoutView具有類似的功能,但我無法弄清楚如何從一個tile中爲佔位符定義內容。
嘗試[此鏈接](http://viralpatel.net/blogs/2010/07/spring-3-mvc-tiles-plugin-tutorial -example-eclipse.html) – aishwarya
這幾乎是我要找的。但有沒有可能從另一個tile中爲title屬性定義內容,而無需在tiles定義中配置任何內容? – Mato
是的,你可以,怎麼 - 對不起,你必須查找它,我不記得手:-( – aishwarya