我正在尝试将项目动态添加到 jquery mobile 的列表视图中。我使用 ngClick 事件添加项目并使用 ngRepeat 显示列表。我已经调用了 listview refresh,但最新的项目无法正确设置样式。我应该使用哪个事件来正确刷新?谢谢。
$scope.addItem = function () {
$scope.userList.push($scope.userInputText);
$scope.userInputText = null;
$("#listview1").listview("refresh");
}