Tag: angular ui

如何在角度js中存储和检索数据?

你能告诉我如何永久存储数据(例如本地存储)和检索数据。我想存储数据以便我再次获得。我正在进行客户端编程吗? 我谷歌它说它有persistance.js会这样做..我们可以使用吗?我试着做一个简单的例子来存储数据但不能那样。我想保存学生和class级名单。 这是我的傻瓜: http ://plnkr.co/edit/cLTIJfETGYENQyEdsu94?p =preview // Code goes here var app = angular.module(‘appstart’, [‘ngRoute’]); app.config(function($routeProvider) { // $locationProvider.html5Mode(true); $routeProvider .when(‘/home’, { templateUrl: ‘tem.html’, controller: ‘ctrl’ }) .otherwise({ redirectTo: ‘/home’ }); }); app.controller(“ctrl”, function($scope) { $scope.students = []; $scope.add = function() { $scope.students.push({ inputName : angular.copy($scope.inputName), inputclass : angular.copy($scope.inputclass) }); $scope.inputclass=”; $scope.inputName=”; } } ); […]

如何从textAngular工具栏上的自定义按钮插入文本/符号

基本上我想在工具栏上添加一个按钮,允许用户将©插入文本框编辑器( http://textangular.com/ ),但是我无法理解如何在注册后添加function到我的按钮…由于textangular网站上的自定义function的所有示例都使用相同的语句“wrapSelection”,其中包含非常少的文档,下面显示了一个带有引号按钮的示例。 taRegisterTool(‘quote’, { iconclass: ‘fa fa-quote-right’, tooltiptext: taTranslations.quote.tooltip, action: function(){ return this.$editor().wrapSelection(“formatBlock”, “”); }, activeState: function(){ return this.$editor().queryFormatBlockState(‘blockquote’); } }); 我很困惑“formatBlock”初始化的地方,并相信找到它的来源将帮助我解决这个问题。 如你所见,任何帮助将不胜感激 taRegisterTool(‘insertCopyright’, { buttontext: ‘©’, tooltiptext: taTranslations.insertCopyright.tooltip, action: function () { //??? }, });

AngularJS + Fullcalendar发送错误TypeError:无法读取未定义的属性’__id’

我在我的网站上使用angular-ui-calendar。 在控制器中,我写了这个: define([‘underscore’], function (_) { “use strict”; var SearchController = function ($scope, $location, OrdersService, UsersService) { /* config object */ $scope.uiConfig = { calendar: { height: 450, editable: true, firstDay: 0, monthNames: [‘Enero’, ‘Febrero’, ‘Marzo’, ‘Abril’, ‘Mayo’, ‘Junio’, ‘Julio’, ‘Agosto’, ‘Septiembre’, ‘Octubre’, ‘Noviembre’, ‘Diciembre’], monthNamesShort: [‘Ene’, ‘Feb’, ‘Mar’, ‘Abr’, ‘May’, ‘Jun’, ‘Jul’, ‘Ago’, ‘Sep’, […]

如何手动切换angular-ui-select下拉列表

我正在使用AngularUI的ui-select在页面上创建多个多选。 当用户点击页面上的按钮时,我需要能够打开下拉列表。 我已经尝试在元素上使用jQuery的.toggle(‘click’) .click()和.toggle(‘click’) ,但是当按钮的ng-click函数调用时,这会导致$apply already in progress 。 它们在从Chrome控制台调用时工作。 除了模拟另一次点击之外, ng-clickfunction不会执行任何操作。 除了聚焦输入外, .focus()不做任何事情。 我也不情愿地尝试了一个讨厌的黑客,我使用select的ng-init将它的控制器存储到按钮可以访问的范围,然后使用控制器的toggle()和activate()方法。 这使得重点放在输入上,但相关的下拉列表不会打开。 如何从ui-select元素的上下文外部手动切换下拉列表? 这是你可以玩的Plunker。

如何从事件Dragover或Dragenter中的DataTransfer.getData获取数据

我有一个代码: element.addEventListener(‘dragstart’,function(e){ e.dataTransfer.setData(‘Text’, ‘something is here’); },false); 当我在事件Drop运行时从DataTransfer.getData获取数据时。 但是当我想在事件dragover或dragenter中获取数据时,数据为空。 element.addEventListener(‘dragover’,function(e){ var a = e.dataTransfer.getData(‘Text’); console.log(a); },false); 那么,如何在事件dragover或dragenter中获取数据