gpt4 book ai didi

javascript - 使用 Angular 将一行数据从表传递到模式

转载 作者:行者123 更新时间:2023-12-02 16:14:53 27 4
gpt4 key购买 nike

我有一个表格,显示竞赛条目(使用 PHP 从数据库中提取并转换为 .json 对象以与 AngularJS 和 JavaScript 一起使用)。我还想在其上实现一个模式,这样当“法官”单击每个条目时,他们可以看到该条目的详细信息。所以基本上,我需要将一行数据传递给该模式(ui.bootstrap 模式)。

这是包含所有数据的表的标记。该模态应用于 ng-repeated :

<table class="submissions">

<tr class="tb-header">
<td>id</td>
<td>wa #</td>
<td>name</td>
<td>email</td>
<td>file</td>
<td>rating</td>
<td>submitted on</td></tr>

<tr ng-click="open()" ng-repeat="row in rows track by $index">

<td>{{ row.id }}</td>
<td class="wa-num">{{ row.wa_num }}</td>
<td>{{ row.name }}</td>
<td>{{ row.email }}</td>
<td id="submitted-file">{{ row.file }}</td>
<td>{{ row.rating }}</td>
<td>{{ row.submitted }}</td>

</tr>


</table>

这是控制整个页面和模式的 Controller :

.controller('dashboard',['$scope', '$rootScope', '$location', '$modal', 'loginService', 'getEntries',
function($scope, $rootScope, $location, $modal, loginService, getEntries){

$scope.open = function () {

var modalInstance = $modal.open({
templateUrl: '/partials/submission_mod.html',
controller: ['$scope', '$modalInstance', function($scope, $modalInstance){
$scope.modalInstance = $modalInstance;

$scope.cats = "Submission info goes here.";
}]
});
};

var entries = getEntries.entries();

entries.save(
function(result){
console.log(result);

//$scope.rows = [];
$scope.rows = result.entries;
console.log($scope.rows);


},
function(result) {
console.log(result);
}

);
}])

这是模式的标记(由于某种原因,目前没有拉入任何内容,甚至没有硬编码的“猫”):

<div class="modal-entry">{{ cats }}</div>
<button class="btn btn-primary btn-modal" ng-click="modalInstance.close()">Close</button>

问题是:如何将数据传递给该模式?如何定位它以便它只拉出被单击的行等?

非常感谢任何指导。

最佳答案

plinkr Angular Bootstrap Directives Docs 有一些关于如何做到这一点的信息。

像这样的决心:

var modalInstance = $modal.open({
templateUrl: 'myModalContent.html',
controller: 'ModalInstanceCtrl',
size: size,
resolve: {
items: function () {
return $scope.items;
}
}
});

关于javascript - 使用 Angular 将一行数据从表传递到模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29774583/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com