$ compile不呈现html

时间:2015-05-10 07:55:38

标签: jquery angularjs

streamService.create($scope.scream).then(function (response) {
                $scope.savedSuccessfully = true;

                $('.alert').delay(3000).fadeOut("slow");
                var json = JSON.stringify(response.data).replace(/"/g, "'");
                var b = $compile("<stream datasource=\"" + json + "\" position=\"0\"> </stream >")($scope);


                $("#viewOne .left-panel").prepend(b);
            },
             function (err) {
                 $scope.message = err.data.message;
             });

        })

变量b渲染。它没有给我渲染的HTML。我希望在传递数据源值并添加到元素之前获取html。

0 个答案:

没有答案