我有一个我希望可编辑的模型,但出于某种原因没有任何变化,使用ng-view
时文本框不显示,模型未更新。
我可以看到使用enableEditor()
调用函数console.log
。
如果我在 index.html 中将其内联而不是ng-view
而不是 profile.html ,那么一切都能正常运行。
这是文件:
app.js
var proGamersApp = angular.module('proGamersApp', ['ngResource']).
config(function ($routeProvider) {
$routeProvider.
when('/', { controller: 'ProfileController', templateUrl: '/app/partials/profile.html' }).
otherwise({ redirectTo: '/' });
});
var ProfileController = function ($scope) {
$scope.init = function () {
$scope.title = 'first title';
};
$scope.init();
$scope.enableEditor = function () {
console.log('enableEditor()')
$scope.editorEnabled = true;
$scope.editableTitle = 'second title';
$scope.title = 'second title';
};
...
};
的index.html
<!doctype html>
<html ng-app="proGamersApp">
<head>
<title>Pro Gamers</title>
<!-- Scripts -->
<script src="/app/lib/angular.min.js"></script>
<script src="/app/lib/angular-resource.js"></script>
<script src="/app/app.js"></script>
</head>
<body>
<div ng-view></div>
</body>
</html>
profile.html
<div ng-hide="editorEnabled">
{{title}}
<a href="#" ng-click="enableEditor()">Edit title</a>
</div>
<div ng-show="editorEnabled">
<input ng-model="title" ng-show="editorEnabled">
<a href="#" ng-click="save()">Save</a>
or
<a href="#" ng-click="disableEditor()">cancel</a>.
</div>
有人知道我做错了吗?
感谢
答案 0 :(得分:1)
链接正在添加到您的地址,导致路由器刷新页面并破坏所有$ scope vars。不使用空白锚点,而是使用类似锚点的样式:
span:hover {
cursor:pointer;
}
这只会将光标指向指针,根据需要自定义颜色。根据您的评论,不要将target=_self
添加到href,在以下位置添加:
<a href="#" target=_self ng-click="save()">Save</a> //prevent address bar change
正如我之前所说的,改为使用跨度。