从Spring MVC中以纯HTML传递参数

时间:2018-06-20 05:58:19

标签: html spring-mvc

有什么方法可以使用Spring MVC将参数传递给纯html还是只能使用jsp?

我购买了一个主题,该主题中的所有文件均为html,js和css。 现在我想在项目中使用spring mvc,但是我不知道如何将参数从 spring mvc传递到纯HTML文件。我很清楚jsp中的JSTL标记,但不会使用纯HTML。

我在下面尝试过:

/** * summary */ class WP_Custom_Data { /** * summary */ public function __construct() { //Here you can add for shortcode as well add_filter('the_content', array($this, 'wpdev_before_after')); } public function wpdev_before_after($content) { $url = "xyzurl"; $api = file_get_contents( 'http://graph.facebook.com/?id=' . $url ); $count = json_decode( $api ); $beforecontent = $count->share->share_count; $fullcontent = $beforecontent . $content; return $fullcontent; } // here you can call the shortcode function as well } $wpspw_pro_script = new WP_Custom_Data(); 但这没用

我应该将百里香叶用于现有主题吗?

1 个答案:

答案 0 :(得分:1)

您问题的答案是

JSP有点旧,它有很多缺点。

Thymeleaf与html兼容。