创建JS控制台(Creating a JS Console)

下面这个小的例子我们将创建一个JS控制台。我们需要一个输入区域允许用户输入表达式,和一个结果输出列表。由于这更像一个桌面应用程序,我们使用QtQuick控制模块。

注意

在你下一个项目中包含一个JS控制台可以更好的用来测试。增加Quake-Terminal效果也有助于对你的客户留下更好的印象。为了更好的使用它,你需要评估JS控制台的控制范围,例如当前可见屏幕,核心数据模型,一个单例对象或者其它的东西。

创建JS控制台(Creating a JS Console) - 图1

我们在Qt Creator中使用QtQuick controls创建一个Qt Quick UI项目。把这个项目取名为JSConsole。完成引导后,我们已经有了一个基础的应用程序框架,这个框架包含一个应用程序窗口和一个菜单。

我们使用一个TextFiled来输入文本,使用一个Button来对输入求值。表达式求值结果使用一个机遇链表模型(ListModel)的链表视图(ListView)显示,每一个链表项使用两个标签显示表达式和求值结果。

  1. // part of JSConsole.qml
  2. ApplicationWindow {
  3. id: root
  4. ...
  5. ColumnLayout {
  6. anchors.fill: parent
  7. anchors.margins: 9
  8. RowLayout {
  9. Layout.fillWidth: true
  10. TextField {
  11. id: input
  12. Layout.fillWidth: true
  13. focus: true
  14. onAccepted: {
  15. // call our evaluation function on root
  16. root.jsCall(input.text)
  17. }
  18. }
  19. Button {
  20. text: qsTr("Send")
  21. onClicked: {
  22. // call our evaluation function on root
  23. root.jsCall(input.text)
  24. }
  25. }
  26. }
  27. Item {
  28. Layout.fillWidth: true
  29. Layout.fillHeight: true
  30. Rectangle {
  31. anchors.fill: parent
  32. color: '#333'
  33. border.color: Qt.darker(color)
  34. opacity: 0.2
  35. radius: 2
  36. }
  37. ScrollView {
  38. id: scrollView
  39. anchors.fill: parent
  40. anchors.margins: 9
  41. ListView {
  42. id: resultView
  43. model: ListModel {
  44. id: outputModel
  45. }
  46. delegate: ColumnLayout {
  47. width: ListView.view.width
  48. Label {
  49. Layout.fillWidth: true
  50. color: 'green'
  51. text: "> " + model.expression
  52. }
  53. Label {
  54. Layout.fillWidth: true
  55. color: 'blue'
  56. text: "" + model.result
  57. }
  58. Rectangle {
  59. height: 1
  60. Layout.fillWidth: true
  61. color: '#333'
  62. opacity: 0.2
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }

求值函数jsCall不会做求值操作,而是将它的内容移动到JS模块(jsconsole.js)完成清晰的分离。

  1. // part of JSConsole.qml
  2. import "jsconsole.js" as Util
  3. ...
  4. ApplicationWindow {
  5. id: root
  6. ...
  7. function jsCall(exp) {
  8. var data = Util.call(exp);
  9. // insert the result at the beginning of the list
  10. outputModel.insert(0, data)
  11. }
  12. }

为了安全我们不在JS中调用eval函数,这可能导致用户修改局部作用域。我们使用constructor函数在运行时创建JS函数,并在我们的作用域中传入变量值。由于函数可能随时都在创建,它不能扮演关闭和存储它私有作用域的角色,我们需要使用 this.a = 10 来存储值10在这个函数的作用域。这个作用域由脚本设置到变量作用域。

  1. // jsconsole.js
  2. .pragma library
  3. var scope = {
  4. // our custom scope injected into our function evaluation
  5. }
  6. function call(msg) {
  7. var exp = msg.toString();
  8. console.log(exp)
  9. var data = {
  10. expression : msg
  11. }
  12. try {
  13. var fun = new Function('return (' + exp + ');');
  14. data.result = JSON.stringify(fun.call(scope), null, 2)
  15. console.log('scope: ' + JSON.stringify(scope, null, 2) + 'result: ' + result)
  16. } catch(e) {
  17. console.log(e.toString())
  18. data.error = e.toString();
  19. }
  20. return data;
  21. }

调用函数返回的数据是一个JS对象,包含了一个结果,表达式和错误属性:data: { expression: {}, result: {}, error: {} }。我们可以直接在链表模型(ListModel)中使用这个JS对象,并且可以通过代理(delegate)访问它,例如model.expression会得到输入的表达式。为了让例子更加简单,我们忽略了错误的结果。