我在我的页面上使用了一个模板,每个页面都有你的带有angularJS代码的文件js:
〜/内容/脚本/布局/ index.js
〜/内容/脚本/家/ home.js
〜/内容/脚本/ projetos / projetos.js
我正在尝试在下拉列值更改时调用函数,因此我在局部视图中使用ng-change。
我的页面_Layout:
<html lang="en" class="no-js" ng-app="App">
...
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<div class="page-content">
@RenderBody()
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
</div>
</div>
<!-- END CONTENT -->
当事件点击菜单时会加载我的部分视图
<div ng-cloak ng-controller="ProjetosController" ng-init="init()">
...
<div class="col-md-3">
<label>Projetos</label>
<div class="input-icon input-icon-lg">
<select ng-change="changed()" data-placeholder="selecione..." class="form-control input-lg select2me" ng-model="Projetos"
ng-options="proj.Nome for proj in Projetos">
<option value=""></option>
</select>
</div>
但是当我查看Chrome的开发者工具时,没有任何反应发生任何错误。
我的控制器c#
public JsonResult LoadProjetos()
{
var results = rep.LoadProjetos();//List<Projetos>();
return Json(new
{
projetos = results
}, JsonRequestBehavior.AllowGet);
}
我的控制器js
var app = angular.module('App');
app.controller('ProjetosController', function ($scope, $http) {
$scope.init = function () {
$("#menu").find('li#projetos').addClass("start active");
$http({
method: 'GET',
url: 'Projetos/LoadProjetos'
}).then(function successCallback(response) {
var projetos = response.data.projetos;
$scope.Projetos = projetos;
}, function errorCallback(response) {
alert(response);
});
}
$scope.changed = function () {
alert('text');
}
});
有什么想法吗?谢谢大家
答案 0 :(得分:0)
尝试这些更改,以便您的select使用$ scope变量:
<select ng-change="changed()" data-placeholder="selecione..." class="form-control input-lg select2me" ng-model="selectedItem"
ng-options="proj.Nome for proj in Projetos">
<option value=""></option>
</select>
$scope.changed = function () {
alert($scope.selectedItem);
}
答案 1 :(得分:0)
如果你使用AngularJS 1.2.x版和最新的Chrome,请看: https://code.google.com/p/chromium/issues/detail?id=565132
更新到1.4.5这应该可行。
答案 2 :(得分:0)
很长一段时间后,我找到了解决方案。问题是因为我的ng-model与ng-option的名称相同。我改了它,工作正常!
所有。