我目前有以下角度代码:
function MyController($scope) {
var items = [];
$scope.addRow = function () {
items.push({ value: 'Hello,world!' });
$scope.items = items;
}
}
以及以下html片段:
我目前有以下角度代码:
function MyController($scope) {
var items = [];
$scope.addRow = function () {
items.push({ value: 'Hello,world!' });
$scope.items = items;
}
}
以及以下html片段: