Which templating engine can I use with both JS and PHP? [closed]

旧街凉风 提交于 2019-11-29 20:57:19

If you like JS->PHP priority :) then you have this two jquery-tmpl compatible template renderer for PHP backend

  1. https://github.com/abackstrom/jquery-tmpl-php
  2. https://github.com/xyu/jquery-tmpl-php

If you prefer more PHP->JS priority :) then you can try this Javascript implementation of popular PHP templating Smarty

  1. http://code.google.com/p/jsmart/

Or you can try something more neutral like:

  1. Mustache http://mustache.github.com/

Do you mean something like mustache?

You have a new option to compile templates for both PHP and JS using Twig + Twig.js

Use Mustache!

AFAIK, Mustache is the only template engine that has official implementations in both PHP and JS... along with two dozen programming/scripting languages.

  • Twig does have a JS version, but that's incomplete and AFAIK unofficial.

  • Smarty does have a JS version, but it's also an unofficial port... and Smarty is getting a bit outdated.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!