- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试弄清楚如何在弹出时将 unit_number
传递到模式中。我是 Angular 的新手,我对 resolve:
和 group:
正在做的事情以及如何在返回语句中包含 unit_number 感到有点困惑。
$scope.openTenantModal = function (unit_number) {
var modalInstance = $uibModal.open({
animation: true,
templateUrl: 'views/addtenantmodal.html',
controller: 'AddTenantModalCtrl',
size: 'large',
resolve: {
group: function () {
return $scope.group;
}
}
});
modalInstance.result.then(function () {
}, function () {
});
};
最佳答案
你正在使用 ui-bootstrap
Bootstrap components written in pure AngularJS
要将变量传递给您需要使用的模态 Controller
resolve: {
A: function() {
return 'myVal'
}
}
然后您可以通过注入(inject)从模态 Controller 访问变量“A”
controller: ['A', function(A) {
// now we can add the value to the scope and use it as we please...
$scope.myVal = A;
}]
checkout :https://angular-ui.github.io/bootstrap/#/modal
解决:
Members that will be resolved and passed to the controller as locals; it is equivalent of the resolve property in the router.
组只是一个成员(它可以是你选择的任何东西)
关于javascript - 通过开放模态函数 Angular uibModal 传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38311159/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!