我第一次使用Wt,但网上没有太多资源需要学习。
我想添加到我的页面 ace code editor 。该库易于使用。模板html是:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Editor</title>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#editor {
margin: 0;
position: absolute;
top: 200px;
bottom: 0;
left: 10px;
right: 1500px;
font-size: 24px;
}
</style>
</head>
<body>
<pre id="editor">function foo(items) {
var i;
for (i = 0; i < items.length; i++) {
alert("Ace Rocks " + items[i]);
}
}</pre>
<script src="src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("editor");
editor.setTheme("ace/theme/twilight");
editor.session.setMode("ace/mode/javascript");
</script>
</body>
</html>
在回答类似问题之后,我尝试过创建
Wt::WTemplate* editor = new Wt::WTemplate(WApplication::root());
和std::stringstream js;
并估算了上面html文件中编写的脚本部分。
然后叫
editor->doJavaScript(js.str());
它不起作用。有人可以向我解释如何使用Wt的javascript库,不仅可以在网页上显示这个编辑器,还可以控制它并调用它javascript operations。
我正在使用visual studio 2015.我将上述html页面使用的所有javascript文件添加到我的项目中。
谢谢。