我正在使用
的语言应用生成表单以获取用户输入> search db>如果它存在于db中,则返回输入的单词和翻译的单词
如果输入不存在,则提示用户是否要将新单词添加到词典>新表格将有两个文本区域,一个用于英语单词,另一个用于其他语言单词>返回(显示)用户输入以确认是否正确输入>如果正确保存到db
在其他语言的单词输入中使用的文本区域必须能够处理unicode字符。我可以在html javascript中执行此部分,如下所示....我对django有基本的了解但是如何将所有内容(特别是char替换)组合成无缝的django应用程序?
<script>
function replaceStuff(aObj){
aObj.innerHTML = aObj.innerHTML.replace('.O','Ọ')
aObj.innerHTML = aObj.innerHTML.replace('.o','ọ');
aObj.innerHTML = aObj.innerHTML.replace('.E','Ẹ');
aObj.innerHTML = aObj.innerHTML.replace('.e','ẹ');
}
function printStuff(aObj){
document.getElementById("strDiv").innerHTML = document.getElementById("tArea").innerHTML;
}
</script>
</head>
<textarea id="tArea" onkeyup="replaceStuff(this);"></textarea>
<br />
<button id="button" onclick="printStuff(this);">Print Stuff</button>
<br /><br /><br /><br />
<div id="strDiv" />
</body>
</html>