Smarty在Script中使用html标签破解

时间:2013-02-17 12:48:20

标签: php jquery codeigniter smarty

我使用blueimp-jquery-file-upload和smarty,因为blueimp使用脚本中带有html标签的奇怪脚本标签,它与smarty引擎冲突,结果我得到了剧本失灵。

<script id="template-upload" type="text/x-tmpl">

以下是用于上传的脚本标记 screenshot

但是当渲染时,它没有按正确的顺序排列,我试图更改分隔符,但它仍然无法正常工作

这是渲染的html

screenshot

请有人告诉我如何修复它,当我放一些其他JS而不是blueimp上传脚本时,它可以正常工作。

即使这不起作用

{literal}
<script id="template-upload" type="text/x-tmpl">
var a = 3;
<div  class="B">sdfsdfs</div>
 var j = 5;
<div class="A"></div>
</script>
{/literal}

1 个答案:

答案 0 :(得分:2)

这个BlueImp插件使用另一个名为Templates engine的jQuery插件从JavaScript生成HTML。他们碰巧使用与Smarty相同的语法,这似乎打破了你的代码。但是,BlueImp插件允许您通过手动将HTML定义为插件选项来覆盖此模板语言。您的JavaScript看起来像这样:

$('#fileupload').fileupload({
    filesContainer: $('#upload_files_container'),
    uploadTemplateId: null,
    downloadTemplateId: null,
    uploadTemplate: function (o) {
        var rows = $();
        $.each(o.files, function (index, file) {
            var row = $('<tr class="template-upload fade">' +
                '<td class="preview"><span class="fade"></span></td>' +
                '<td class="name"></td>' +
                '<td class="size"></td>' +
                (file.error ? '<td class="error" colspan="2"></td>' :
                        '<td><div class="progress">' +
                            '<div class="bar" style="width:0%;"></div></div></td>' +
                            '<td class="start"><button>Start</button></td>'
                ) + '<td class="cancel"><button>Cancel</button></td></tr>');
            row.find('.name').text(file.name);
            row.find('.size').text(o.formatFileSize(file.size));
            if (file.error) {
                row.find('.error').text(
                    locale.fileupload.errors[file.error] || file.error
                );
            }
            rows = rows.add(row);
        });
        return rows;
    },
    downloadTemplate: function (o) {
        var rows = $();
        $.each(o.files, function (index, file) {
            var row = $('<tr class="template-download fade">' +
                (file.error ? '<td></td><td class="name"></td>' +
                    '<td class="size"></td><td class="error" colspan="2"></td>' :
                        '<td class="preview"></td>' +
                            '<td class="name"><a></a></td>' +
                            '<td class="size"></td><td colspan="2"></td>'
                ) + '<td class="delete"><button>Delete</button> ' +
                    '<input type="checkbox" name="delete" value="1"></td></tr>');
            row.find('.size').text(o.formatFileSize(file.size));
            if (file.error) {
                row.find('.name').text(file.name);
                row.find('.error').text(
                    locale.fileupload.errors[file.error] || file.error
                );
            } else {
                row.find('.name a').text(file.name);
                if (file.thumbnail_url) {
                    row.find('.preview').append('<a><img></a>')
                        .find('img').prop('src', file.thumbnail_url);
                    row.find('a').prop('rel', 'gallery');
                }
                row.find('a').prop('href', file.url);
                row.find('.delete button')
                    .attr('data-type', file.delete_type)
                    .attr('data-url', file.delete_url);
            }
            rows = rows.add(row);
        });
        return rows;
    }
});

See their documentation。这将允许您在不使用Smarty语法的情况下生成HTML。