index.html
<div class="modal-body">
<form >
<tags options="{addable: true}" typeahead-options="typeaheadOpts" data-model="information.address" data-src="toPerson as toPerson for toPerson in to"></tags>
<input type="text" placeholder="Subject" style="width:95%;" data-ng-model = "information.subject"><br />
<textarea style="width:95%;" rows="10" data-ng-model = "information.emailContent"></textarea>
</form>
</div>
<div class="modal-footer">
<a href="#" class="btn" ng-click = "submit(information.address, information.subject, information.emailContent); close()">Close</a>
<a href="#" class="btn btn-primary" ng-click = "close()">Send</a>
</div>
emailViewController.js
$scope.information = {
address: [],
subject: []
};
$scope.submit = function (address, subject, emailContent) {
$localStorage.address.push(address);
if (! ($localStorage.subject instanceof Array) ) {
$localStorage.subject = [];
}
$localStorage.subject.push(subject);
如果我没有将$localStorage.subject
初始化为数组,则会向我显示错误.push is not a function
。
为什么在将数据推送到$localStorage.address
时没有出现此错误?
答案 0 :(得分:0)
您使用:
var Helper = {
pushArray: function (arr1, arr2) {
arr1 = this.toArray(arr1);
if (arr1 && arr2 && Array.isArray(arr1)) {
arr1.push.apply(arr1, Array.isArray(arr2) ? arr2 : [arr2]);
}
},
toArray: function (arr) {
return arr ? (Array.isArray(arr) ? arr : [arr]) : [];
}
};
Helper.pushArray(arr1, second);
或者您只是声明:
$localStorage.$default({
subject: []
});