可以在模板中直接使用$Request对象,直接输入它的属性或调用它的大部分方法,但只支持方法的第一个参数;

    1. // 调用Request对象的get方法 传入参数为id
    2. {$Request.get.id}
    3. // 调用Request对象的param方法 传入参数为name
    4. {$Request.param.name}
    5. // 调用Request对象的param方法 传入参数为post.post_title
    6. {$Request.param.post.post_title}
    7. // 调用Request对象的root方法
    8. {$Request.root}
    9. // 调用Request对象的root方法,并且传入参数true
    10. {$Request.root.true}
    11. // 调用Request对象的path方法
    12. {$Request.path}
    13. // 调用Request对象的module方法
    14. {$Request.module}
    15. // 调用Request对象的controller方法
    16. {$Request.controller}
    17. // 调用Request对象的action方法
    18. {$Request.action}
    19. // 调用Request对象的ext方法
    20. {$Request.ext}
    21. // 调用Request对象的host方法
    22. {$Request.host}
    23. // 调用Request对象的ip方法
    24. {$Request.ip}
    25. // 调用Request对象的header方法
    26. {$Request.header.accept-encoding}

    原文: https://www.thinkcmf.com/docs/cmf/请求参数.html