Home Backend Development PHP Tutorial symfony2 twig模板引擎

symfony2 twig模板引擎

Jul 29, 2016 am 09:02 AM
Block public resources

1、基本语法

Says something:{{    }}

Does something:{%  %}

Comment something:{#    #}

{% extends "AppWebBundle::layout.html.twig" %}继承模板

2、核心概念:

用类的继承关系去管理页面之间的关系

如果要访问某个bundle里的资源文件,需要将文件拷贝到/web 目录下,或者linux/mac 软连接映射到/web目录下

windows:  >php app/console assets:install web

linux:  >php app/console assets:install web --symlink --relative

3、js css文件管理

(1)直接使用某个CSS/JS文件:{{asset('xxx.js')}}

(2)注册/定义资源:{% javascripts %} {% stylesheets %}

# 会将‘AppWebBundle/Resources/public/js/’目录下所有的js文件依次输出<br>{% block my_js %<span>}
    {</span>% javascripts '@AppWebBundle/Resources/public/js/*' %<span>}
        </span><script type="text/javascript" src="%7B%7B%20asset_url%20%7D%7D"></script><span>    {</span>% endjavascripts %<span>}
{</span>% endblock %}
Copy after login

并在app/config/config.yml配置:

assetic:<span>    bundles</span>:        [ AppWebBundle ]
Copy after login

(3)页面间共享CSS/JS文件的通用策略

symfony2 twig模板引擎

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Moondrop releases Block true wireless earbuds with low-latency game mode Moondrop releases Block true wireless earbuds with low-latency game mode Aug 10, 2024 pm 03:31 PM

Moondrop has released the Block true wireless earbuds for audio enthusiasts that sit comfortably in the outer ear. Unlike earbuds jammed into ear canals, the Block does not cause a plugged ear feeling or collect ear wax. The 13 mm driver is enclosed

What is the difference between the developer version and the public version of iOS? What is the difference between the developer version and the public version of iOS? Mar 01, 2024 pm 12:55 PM

Every year before Apple releases a new major version of iOS and macOS, users can download the beta version several months in advance and experience it first. Since the software is used by both the public and developers, Apple has launched developer and public versions, which are public beta versions of the developer beta version, for both. What is the difference between the developer version and the public version of iOS? Literally speaking, the developer version is a developer test version, and the public version is a public test version. The developer version and the public version target different audiences. The developer version is used by Apple for testing by developers. You need an Apple developer account to download and upgrade it.

How to implement jar operation in springboot and copy resources files to the specified directory How to implement jar operation in springboot and copy resources files to the specified directory May 12, 2023 pm 09:34 PM

Springboot implements jar operation and copies resources files to the specified directory 1. Requirements During the project development process, all resources in the project resources/static/ directory need to be copied to the specified directory. Video files need to be downloaded in the company's project. Since the download has an html page, the corresponding static resource files are used to load the multi-channel video, such as js, css.jwplayer, jquery.js and other files, jars made by maven and The path of the usually published project is blocked, so when reading the path, the path of the jar is obtained, and the file path in the jar cannot be obtained. 2. Idea According to my needs, the idea of ​​copying is probably to obtain it first

How to read the file path in the resources directory in Java How to read the file path in the resources directory in Java Apr 19, 2023 am 10:43 AM

The method of printing a file is as follows: /***Read the file content according to the file path**@paramfileInPath*@throwsIOException*/publicstaticvoidgetFileContent(ObjectfileInPath)throwsIOException{BufferedReaderbr=null;if(fileInPath==null){return;}if(fileInPathinstanceofString ){br=newBufferedReader(newFileReader(ne

How does the springboot project read files in the resources directory? How does the springboot project read files in the resources directory? May 19, 2023 am 08:29 AM

1: Use the ClassLoader.getResourceAsStream() method to use the class loader to obtain the input stream of the resource file. This method accepts a resource file path parameter and returns an InputStream object. InputStreaminputStream=getClass().getClassLoader().getResourceAsStream("file.txt"); Note that the resource file path returned by this method is relative to the root path of the class loader. Therefore, for files in the resources directory, you need to add "class" before the file name.

How springboot reads files under resources How springboot reads files under resources May 12, 2023 am 11:46 AM

Many times in the project, it is necessary to read custom configuration files. No matter how you write the local development tool, you can successfully write it, but when you deploy it to the service, there will be problems. Exception BOOT-INF/classes!/config.xml (file name, directory name or volume label syntax) Incorrect.) There is an exclamation mark in the path. After understanding it, it is probably that the springboot jar is a file, that is, a compressed package. There is no way to read the path in the compressed file, so we need to solve this problem and understand the reading configuration. The principle of the file is to directly obtain the file stream. 1. Reading using the path within the project can only be used in development tools and cannot be read after deployment. (Not universal) Similar: src/main/resources/

Java function access permission modifier public usage guide Java function access permission modifier public usage guide Apr 26, 2024 am 08:39 AM

The Java public access modifier allows functions to be accessed from anywhere and is used to declare public APIs and define tools and utilities that are shared across packages or classes. The specific usage is as follows: Syntax: public return value type function name (parameter list) {...} Scenario: functions that need to be accessed from anywhere, methods in public APIs, shared tools or utilities

Java programs display different access levels Java programs display different access levels Aug 19, 2023 pm 10:09 PM

Access modifiers are used to set the feature of visibility of some particular classes, interfaces, variables, methods, constructors, data members, and the setter methods in Java programming language. In Java environment, we have different types of access modifiers. Default - If we declare a function, it will only be visible in a specific package. Private- If we declare a function, it will be available only in a specific class

See all articles