我有这个代码。

{if $loginUrl}
{literal}
<script type="text/javascript">
    var newwindow;
    var intId;
    function login() {
        var  screenX    = typeof window.screenX != 'undefined' ? window.screenX : window.screenLeft,
             screenY    = typeof window.screenY != 'undefined' ? window.screenY : window.screenTop,
             outerWidth = typeof window.outerWidth != 'undefined' ? window.outerWidth : document.body.clientWidth,
             outerHeight = typeof window.outerHeight != 'undefined' ? window.outerHeight : (document.body.clientHeight - 22),
             width    = 500,
             height   = 270,
             left     = parseInt(screenX + ((outerWidth - width) / 2), 10),
             top      = parseInt(screenY + ((outerHeight - height) / 2.5), 10),
             features = (
                'width=' + width +
                ',height=' + height +
                ',left=' + left +
                ',top=' + top
              );

        newwindow=window.open('{$loginUrl}','Login by facebook',features);

        if (window.focus) {newwindow.focus()}
        return false;
    }
</script>
{/literal}
{/if}


这是dwoo模板,我想知道如何在javascript中使用我的dwoo变量?我试图做到这一点只是在您可以看到在代码,但它不起作用。我需要在{literal}之间扭曲我的代码,以便它可以工作。

最佳答案

删除{literal}标签。除非您在一行中使用对象文字,否则Dwoo足够聪明,可以避免弄乱您的JavaScript。

确切地说,Dwoo不会解析{后跟任何空格,制表符或换行符。唯一的问题是,如果您执行以下操作:

{foo: "bar"}


在这种情况下,您可以使用几种方法来阻止Dwoo解析:

\{foo: "bar"} // escape the {
{ foo: "bar"} // add a space so it doesn't match it
{literal}{foo: "bar"}{/literal} // wrap with literal, but then you can't use vars inside again

// or expand it to use multiple lines, which is usually more readable anyway
{
    foo: "bar"
}

08-08 08:07