由于我一直迟到回答标记为 php 的问题,我实际上知道答案,我想我会尝试自己问一个问题。
长期以来,我一直在对 php 中的自定义模板引擎进行如此多的完整重写,以至于我想征求意见。
简而言之,这是我迄今为止实现的最重要的部分:
- 任何 http 请求都会被路由到 handler.php
- 根据请求的 URL 实例化控制器并调用该控制器上的方法。
- 控制器方法必须返回一个
IView
兼容的类实例(IView
定义一个Render()
方法)- 模板引擎为每个以“服务器端”结尾的命名空间执行一些 xpath
sprintf('//%s:*[@runat="server"]', $namespaceprefix )
- 对于每个找到的标签,它都会查找由标识的 php 类
$tag.localName
并实例化一个并将其附加到原始模板。 - 附加后,原始模板节点将被馈送到“ServerTag”,以便它可以正确初始化
- 完全完整的 IView 兼容实例被分配给控制器方法中的临时变量。
- 模板引擎为每个以“服务器端”结尾的命名空间执行一些 xpath
- 控制器要求将数据从 Model 类推送到执行一些漂亮的 xpath DOM 替换的视图。
- 控制器将完全填充的视图返回给
main()
处理程序,处理程序呈现它。
我的模板基于 xml。一个简单的模板目前看起来像:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:red="http://www.theredhead.nl/serverside">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Title will be filed by the View depending on the Controller</title>
<link rel="stylesheet" type="text/css" href="/Stylesheet/Get/Main/" />
</head>
<body>
<!-- the entire body may be reset by the view using it, using XPath and DOM functions -->
<!-- Usually the PageHeader and PageFooter would be put back after clearing the body -->
<div id="PageHeader">
<img src="/Image/Get/theredhead_dot_nl.png" alt="Site Logo" />
</div>
<h1>www.theredhead.nl :: Test Template</h1>
<p>
Lorum ipsum dolar sit amet. blah blah blah yackadee schmackadee.
</p>
<div id="PageFooter">
Built by
<br />
<red:UserProfileLink runat="server" Username="kris" />
</div>
</body>
</html>
目前,此输出(包括损坏的缩进):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:red="http://www.theredhead.nl/serverside">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Welcome to my site</title>
<link rel="stylesheet" type="text/css" href="/Stylesheet/Get/Main/"/>
<link rel="stylesheet" type="text/css" href="/Stylesheet/Get/Custom/"/>
<link rel="stylesheet" type="text/css" href="/Stylesheet/Get/Profile/"/>
</head>
<body>
<!-- the entire body may be reset by the view using it, using XPath and DOM functions -->
<!-- Usually the PageHeader and PageFooter would be put back after clearing the body -->
<div id="PageHeader">
<img src="/Image/Get/theredhead_dot_nl.png" alt="Site Logo"/>
</div>
<h1>www.theredhead.nl :: ModelViewController</h1>
<p>
Lorum ipsum dolar sit amet. blah blah blah yackadee schmackadee.
</p>
<div id="PageFooter">
Built by
<br/>
<div><div xmlns:profile="http://www.theredhead.nl/profile" class="ProfileBadge" style="font-size : .8em;">
<a style="text-decoration : none; border: none;" href="/Profile/View/kris">
<img style="float : left;" src="http://www.gravatar.com/avatar/5beeab66d6fe021cbd4daa041330cc86?d=identicon&s=32&r=pg" alt="Gravatar"/>
 Kris
</a>
<br/>
<small>
 Rep: 1
</small>
</div></div>
</div>
</body>
</html>
- 我在这里只触及了冰山一角,是的,一旦我对功能感到满意,我将从输出中删除未使用的 xmlns 属性
- 我的 mvc 和核心框架中目前只有 200 多个类
- 我知道现有的解决方案可以做类似的事情,但我想建立自己的。
所以最大的问题是:你对必备功能有什么意见吗?
PS如果有人对完整的源代码感兴趣,请发表评论,当我达到合理的开发人员可用性水平时,我将在我的网站上提供它。