所以我正在开展一个Angular-fullstack
项目,我正在尝试将ui-TinyMCE
添加到我的项目中。但是,当我改变
angular.module('academiaUnitateApp')
.controller('NewEntryCtrl', function ($http, $scope, $stateParams, entryService, Auth) {
$scope.entry = {};
});
到
angular.module('academiaUnitateApp', ['ui-tinymce'])
.controller('NewEntryCtrl', function ($http, $scope, $stateParams, entryService, Auth) {
$scope.entry = {};
$scope.tinymceOptions = {};
});
我的界面从
更改
到
我做错了什么?
我的HTML
看起来像这样
<div>
<h1>
New chapter
</h1>
<form class="form" name="form" ng-submit="save(form)" novalidate>
<div class="form-group">
<label class="sr-only" for="title">Title</label>
<input class="form-control" name="title" type="text" placeholder="enter title here" required ng-model="entry.title" />
</div>
<div class="form-group">
<select required ng-model="entry.language">
<option disabled>Choose language</option>
<option ng-repeat="e in languages" value="{{e._id}}">{{e.name}}</option>
</select>
</div>
<div class="form-group">
<label class="sr-only" for="content">Content</label>
<textarea ui-tinymce="tinymceOptions" ng-model="entry.content" id="textarea" name="content" ></textarea>
</div>
<button type="submit" class="btn btn-success" id="save-btn"><span class="glyphicon glyphicon-ok"></span> Save</button>
</form>
</div>
<hr>
<div>
<h1>{{entry.title}}</h1>
<br/>
{{entry.content}}
</div>
我在我的凉亭的依赖项中添加了这些内容。
bower.json
{
"name": "academia-unitate",
"version": "0.0.0",
"dependencies": {
"angular": ">=1.2.*",
"json3": "~3.3.1",
"es5-shim": "~3.0.1",
"jquery": "~1.11.0",
"bootstrap": "~3.1.1",
"angular-resource": ">=1.2.*",
"angular-cookies": ">=1.2.*",
"angular-sanitize": ">=1.2.*",
"angular-bootstrap": "~0.11.0",
"font-awesome": ">=4.1.0",
"lodash": "~2.4.1",
"angular-socket-io": "~0.6.0",
"angular-ui-router": "~0.2.10",
"angular-ui-tinymce": "*"
},
"devDependencies": {
"angular-mocks": ">=1.2.*",
"angular-scenario": ">=1.2.*"
}
}
答案 0 :(得分:1)
['ui-tinymce']
应为['ui.tinymce']
我还认为您正在将ui.tinymce
添加到错误的位置。看起来你正在重新创建模块而不是检索。请参阅https://docs.angularjs.org/guide/module#creation-versus-retrieval。
对于角度全栈,您的/client/app/app.js
有:
angular.module('demoApp', [
'ngCookies',
'ngResource',
'ngSanitize',
'btford.socket-io',
'ui.router',
'ui.bootstrap'
])
您应该在此处添加ui.tinymce
。
angular.module('demoApp', [
'ngCookies',
'ngResource',
'ngSanitize',
'btford.socket-io',
'ui.router',
'ui.bootstrap',
'ui.tinymce'
])