1

変数をviews.pyのrender_to_responseからscript.jsに渡すことができるかどうか疑問に思っていたのですが、

render_to_response('appname/basic.html',{'var':somevariable})

script.js は次のようなものを使用するため、基本的には HTML ページの外部にある変数 {{var}} にアクセスしたいと考えています。

function WillHappen()
{
    var n = noty({
        text: 'You're {{var}}!',
        type: 'warning',
        dismissQueue: false,
        layout: 'center',
        theme: 'defaultTheme'
    })

}

Javascript を HTML ページに配置すると機能しますが、多くの HTML ページで Javascript を使用している可能性があるため、それらを分離したいと考えました。

4

2 に答える 2

0

<script></script>良い解決策は、HTMLファイルの間にコードを書くことではありません

多分でmy_script.html

<script>
    function WillHappen()
    {
        var n = noty({
            text: 'You're {{var}}!',
            type: 'warning',
            dismissQueue: false,
            layout: 'center',
            theme: 'defaultTheme'
        })

    }
</script>

でも、これでいいの?

于 2013-05-14T13:22:49.647 に答える