如何使用jquery.load()方法将角度js $ scope对象应用于部分加载?

时间:2015-07-16 08:07:13

标签: javascript jquery angularjs partials

在我的应用程序中,我使用类似的东西加载html部分:

$document.ready(function(){
    $('#parentElement').load('/partials/temp1');
});

正在加载的模板类似于:

<p style="background-color:black; color:white; margin:20px; padding:20px;">A simple 1 temp child - {{items[0]}}</p>
          <div style="background-color:gray; color:white;">Html contents also works ok!!!</div>
          <div>The quick brown fox jumps over the lazy dog</div>
          <p>
            Make the fox
            <button type="button" onclick="alert('Jump!!');">jump</button>
          </p>

BTW "#parentElement"包含在ng-appng-controller指令div

模板加载正常,但Angular.js没有呈现{{items[0]}} $scope对象我在这里做错了吗?

请指导

0 个答案:

没有答案