gpt4 book ai didi

javascript - 将 api 中的文本添加到编辑器中

转载 作者:行者123 更新时间:2023-12-03 02:00:40 25 4
gpt4 key购买 nike

我在我的应用程序中使用 LineControl Editor。一切正常,除了当我尝试将文本添加到编辑器中时除外。

这是LineControl github的链接:https://github.com/suyati/line-control/wiki

如果我按照说明操作,添加文本看起来非常容易,除非文本来自 api。这是我到目前为止的代码:

function detailOfProduct(){
$http.get('/theApi')
.then(function(data){
$scope.detailList = data.data.Response;
});
}

响应是这样的:

{Id: 1, Name: "Chuck", Description: "Hi, this is a description of me"}

要激活文本编辑器,我正在使用这部分代码:

$(document).ready( function() {
$("#txtDescription").Editor();
});

并设置文本:

  $("#txtDescription").Editor("setText", "Here goes your text");

如果我需要在“这是您的文本”部分添加 api 响应的描述文本,我该怎么办?

我正在使用 AngularJs、Javascript 和一些 JQuery。

希望你能帮助我。

最佳答案

你应该能够做到这一点:

function detailOfProduct(){
$http.get('/theApi')
.then(function(data){
$scope.detailList = data.data.Response;
$("#txtDescription").Editor("setText", data.data.Response.Description);
});
}

只是不要尝试将任何 AngularJS 2 路数据绑定(bind)与此库(或 jQuery)结合使用,否则可能会导致一些难以修复的错误。

关于javascript - 将 api 中的文本添加到编辑器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50050822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com