我使用jade来创建php模板。是否可以使用jade输出这样的字符串:
<div id="main" <?php print $attributes; ?>></div>
答案 0 :(得分:1)
我遇到了一个解决方案,对我来说似乎有些苛刻,但它有效:
#main&attributes({'<?php print $attributes; ?>': true})
将渲染为:
<div id="main" <?php print $attributes; ?>></div>
但仅限于将doctype设置为html5。
诀窍是,将php剪切为boolean属性。 See documentation
答案 1 :(得分:0)
应该是以下内容,我不确定变量。您可能需要将其设置为类似于网页的功能。
Product
id name
1 product_1
OrderItem
product_id order_id quantity total_price
1 1 10 200
1 2 10 200
for example expecting output should be
name quantity total_price
product_1 20 400
使用:http://phpmagazine.net/2010/11/jade-advanced-templating-engine-available-for-php.html