Maison > Article > développement back-end > 请问这是什么代码?
以下代码是javascript语法还是php代码?
{% if (file.error) { %}
这是一个html文件,代码如下:
<script id="template-upload" type="text/x-tmpl">{% for (var i=0, file; file=o.files[i]; i++) { %}...
这是某种模板引擎的语法
具体是哪个,不是很清楚
你应该知道
这是某种模板引擎的语法
具体是哪个,不是很清楚
你应该知道
<script id="template-upload" type="text/x-tmpl">{% for (var i=0, file; file=o.files[i]; i++) { %} <tr class="template-upload fade"> <td> <span class="preview"></span> </td> <td> <p class="name">{%=file.name%}</p> {% if (file.error) { %} <div><span class="label label-danger">Error</span> {%=file.error%}</div> {% } %} </td> <td> <p class="size">{%=o.formatFileSize(file.size)%}</p> {% if (!o.files.error) { %} <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div> {% } %} </td>
以下代码是javascript语法还是php代码?
{% if (file.error) { %}
这个是模板引擎的语法(语法是可以自定义的),你可以看一下引用文件是php文件,还是其他文件!
这个项目中肯定还有其他文件,找下。应该有.php的文件或者其他的
贴出项目目录
是不是用了smarty模板引擎
这是某种模块引擎!具体的语法是根据模板引擎来定的!
有些框架自己定义语法,不一定都是固定不变的额!
贴出项目目录
https://github.com/blueimp/jQuery-File-Upload 中的 index.html
这个项目中肯定还有其他文件,找下。应该有.php的文件或者其他的
项目中有其他的php文件,但不懂php语法
项目是开源的https://github.com/blueimp/jQuery-File-Upload 这段代码是 index.html中的
{% %}自定义的模版开始和结束符 里面可以输入php模版代码
当文件有任何错误时,如文件类型被禁止,文件大小不符合约定,会得到file.error。
http://avnpc.com/pages/single-file-upload-component-by-jquery-file-upload
asp 模版把
asp的标记符,{% %}跟php中的 ?>一个意思
blueimp的javascript模板,项目网址
https://github.com/blueimp/JavaScript-Templates