我正在使用以下指令,但获得了未定义的'错误为什么我尝试console.log或警告$ scope.cc的值
https://github.com/jasonvenema/sharepoint-angular-peoplepicker
以下是该字段的HTML。有谁知道为什么这会记录为未定义?
<sp-people-picker name="CC" id="CC" ng-model="$scope.cc" min-entries="1" max-entries="20" allow-duplicates="false" show-login="false" show-title="true" min-characters="2" app-web-url="$scope.spAppWebUrl" />
答案 0 :(得分:1)
要访问范围中的模型集,您无需在视图中指定$ scope。
您需要将html更新为
<sp-people-picker name="CC" id="CC" ng-model="cc" min-entries="1" max-entries="20" allow-duplicates="false" show-login="false" show-title="true" min-characters="2" app-web-url="{{spAppWebUrl}}" />