我想知道代码的最佳部分来捕获一个与模板不匹配的404。不过,此时我将检查url字符串,并输出自己的动态html (如果它与模式匹配)。它是动态内容,因为它的wordpress后端中没有内容。因此,我希望回显html和退出,如果它匹配。如果没有,那么继续404和正常。
也提到这个问题。动态URL生成动态内容
TY
在jinja2中,我尝试不止一次地使用模板动态创建html文档。我的python脚本如下所示:
# In my python script
env = Environment()
env.loader = FileSystemLoader('.')
base_template = env.get_template('base_template.html')
# each has the actual content and its associated template
content1 = ("Hello World", 'cont
我试着让剧本布局更有活力,但不知道怎么做,有什么帮助吗?
我的问题是:
index.scala.html
@(title: String,templateName:String) // templateName is data obtained from a db src,
@templates.(@templateName)(title,templateName){ // I wanted to put value of templateName after @template.****, so that template names get set at compile time,
假设我想动态地呈现一些html。哪个更好?(除了给代码提供了良好的结构之外)
<script type="text/template" id="some">
//some html code here
</script>
_.template($("#someid").html());
或
$("#someid").html("inserting html here");
我是斯卡拉的新手。我有预定义的html文件。我想在HTML文件中插入动态内容。
e.g.
$for(products in product)
<div>product.name</div>
<div>product.description</div>
这里products是Scala集合。我可以加载html文件并输入动态值(products)。
你能给我建议一下在Scala里怎么做吗?