-3
ディレクティブでFirstName
の値を取得するにはどうすればよいですか?AngularJSの値
<hello-World value="{{item.FirstName}}"> </hello-World>
app.directive('helloWorld', function() {
return {
restrict: 'AE',
replace: 'true',
template: '<h3>Hello ??????</h3>'
};
});