我需要一个事件,当用户按下元素上的输入并且有一个answer to that question already时执行。但是这里的情况是我唯一可以传递给回调的是$event
对象,但我想将$scope
数据传递给回调,就像ng-click一样:
<input type="text" ng-enter="application.search(application.$hass)"/>
在控制器中我会:
$scope.application = {
$hass: "444331"
}
$scope.application.search = function($hass)
{
alert($hass)// prints 444331
}
我怎样才能实现它。