各位好
目的:按下按鈕後, 把檔案中的html讀出放到$scope.html裡, 再data bind改值
以下是目前的code, 但要按兩下才會出現
$http.get(url)
.then(function(rsp) {
var InnerHtml = "";
jQuery.get('MyHTML.ejs', function(data) {
console.log(data);
$scope.html = data;
});
$scope.test = "Hi there";
}, function myError(rsp) {
//failed
});
直接給字串是可以成功的:
$http.get(url)
.then(function(rsp) {
var InnerHtml = '<p ng-bind="test">aaa</p>';
$scope.html = InnerHtml;
$scope.test = "Hi there";
}, function myError(rsp) {
//failed
});
請問是哪裡有問題?