无法使MyScript Angular示例工作(myscript.com)

时间:2018-07-20 03:37:47

标签: javascript angular canvas socket.io interactive

我正在努力在Angular 6项目中使用MyScript。 我已经从GitHub克隆了以下仓库:

https://github.com/MyScript/web-integration-samples/tree/master/angular-integration-examples

使用npm install安装了所有依赖项。

更改了以下代码行:

import * as MyScriptJS from 'myscript/src/myscript';

针对:

import * as MyScriptJS from 'myscript/dist/myscript.min.js';

因为myscript文件夹中没有名为src的文件。

最后,我编辑了这段代码,注册了一个新的编辑器:

this.editor = MyScriptJS.register(this.domEditor.nativeElement, {
  recognitionParams: {
    type: 'MATH',
    protocol: 'WEBSOCKET',
    apiVersion: 'V4',
    server: {
      scheme: 'https',
      host: 'cloud.myscript.com',
      applicationKey: 'xxx',
      hmacKey: 'xxx',
    },
  },
});

是的,我添加了两个键,并将它们从仪表板中取出。

在这之后,我只能看到一张白色的画布,可以在其中绘制但什么也没有发生,没有其他框可以显示任何结果。

这是一个屏幕截图:

Screen capture

感谢您的帮助!

0 个答案:

没有答案