有一些代码可以用html引擎建立一个node.js服务器:
const express = require('express');
const paypal = require('paypal-rest-sdk');
var cons = require('consolidate');
var path = require('path');
const app = express();
app.engine('html', cons.swig)
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'html');
app.get('/', (req, res) => res.render('index.html'));
不过,我想在index.html文件中输出一些PHP变量。假设这些看起来如下:
<p class="places">
<?php echo $request['places_count'].' places are left now'; ?>
</p>
是否有可能在node.js中显示php veriables,如果没有,解决该问题的最佳方法是什么?