【wangEditor富文本编辑器,无法获取和存储输入框里边的内容。 】 | IT修真院·坑乎
咨询电话 : 010-59478634
切换导航
首页
我的提问
我的回答
我的点赞
消息通知
个人主页
×
提示
尚未登陆,前往官网登陆?
×
提示
尚未登陆,前往官网登陆?
wangEditor富文本编辑器,无法获取和存储输入框里边的内容。
我也踩过这个坑(
1
)
已统计您的踩坑,无需重复点击
回答(1)
详细描述
编辑页的渲染问题,富文本编辑器的内容(content)渲染不出来,按照$scope.param.content = res.data.data.article.createAt;的写法,打印出来是undefined。
截图
没有报错信息,传一个代码截图。
代码
if ($stateParams.id) { $scope.theme = "编辑Article"; $http({ method: "GET", url: "/carrots-admin-ajax/a/article/" + $stateParams.id }).then(function (res) { //console.log(res); $scope.param = res.data.data.article; $scope.title = res.data.data.article.title; $scope.img = res.data.data.article.img; $scope.param.content = editor.txt.html($scope.param.content); $scope.url = res.data.data.article.url; $scope.createAt = res.data.data.article.createAt; }, function (res) { alert(res.data.message); }); //立即上线 $scope.onLine = function () { if ($stateParams.id) { $http({ method: "PUT", url: "/carrots-admin-ajax/a/u/article/" + $stateParams.id, params: { status: 2, title: $scope.title, type: $scope.param.type, industry: $scope.param.industry, img: $scope.img, content: editor.txt.html(), url: $scope.url, createAt: $scope.createAt } }).then(function (res) { console.log(res);
编辑于2024-11-21
时间排序
热门排序
[无名弟子]轰天雷
0
拿到实例,调用setHtml赋值,getHtml拿值,只拿文字就getText()
查看全部>
编辑于2022-09-19
首页
1
末页
去第
页
确定
Copyright ©2015 北京葡萄藤信息技术有限公司 All Rights Reserved | 京ICP备15035574号-1
复制链接
新浪微博
微信扫一扫
2172
0
10
wangEditor富文本编辑器,无法获取和存储输入框里边的内容。
1
1