现在,我可以从数据库中读取 PictureName 并将其显示在浏览器中。 (下图:左侧黑色方块)
我想做的是,当单击行之一(例如pic1)时,它将触发函数 change()。
但是无论我如何尝试,函数 change()均不起作用。我应该对我的代码做什么?感谢您的回答和建议。 :)
<?php
require 'lib.php';
$object = new CRUD();
// table header
$data = '<table style="border-collapse:separate; border-spacing:0px 10px;">
<tr>
<th>No. </th>
<th>PictureName</th>
</tr>';
// table body
$picturetb = $object->Read();
if (count($picturetb) > 0) {
foreach ($picturetb as $key=>$picture) {
$data .= '<tr ng-click="change()">
<td>' . $key . '</td>
<td><a>' . $picture['Picture_Name'] . '</a></td>
</tr>';
}
}
$data .= '</table>';
echo $data;
?>
var mainApp = angular.module("mainApp", []);
mainApp.controller('MyController', function ($scope) {
$scope.readRecords = function () {
$.get("ajax/read.php", {}, function (data, status) {
$(".addPicture").html(data);
});
}
$scope.change = function () {
console.log("do click");
}
}
答案 0 :(得分:2)
可以可以使用$compile
,但是通常以这种方式注入标记是一个非常非常糟糕的主意。为什么不将键/图片作为JSON返回:
$arr = [];
foreach ($picturetb as $key=>$picture) {
$arr[] = array('key' => $key, 'picture' => $picture['Picture_Name']);
}
echo json_encode($arr);
像这样检索
$scope.readRecords = function () {
$.get("ajax/read.php", {}, function (data, status) {
$scope.data = data;
});
}
您认为:
<table style="border-collapse:separate; border-spacing:0px 10px;">
<thead>
<tr>
<th>No. </th>
<th>PictureName</th>
</tr>
</thead>
<tbody>
<tr ng-click="change()" ng-repeat="d in data">
<td> {{ d.key }} </td>
<td><a> {{ d.picture }} </a></td>
</tr>
</tbody>
</table>
答案 1 :(得分:0)
如果坚持要从数据库中获取表,您仍然可以这样做。这是您需要做的。
-再次手动运行角度摘要循环。加载表后。
下面是代码:-
$timeout(function () {
var injector = $('[ng-app]').injector();
var $compile = injector.get('$compile');
var $rootScope = injector.get('$rootScope');
$compile(this.$el)($rootScope);
$rootScope.$digest();
},0);
$timeout
(时间为0)将正确运行摘要循环。
但是我个人会建议@davidkonrad回答。