Отладка бота в коде Visual Studio - builder.ChatConnector не является конструктором - PullRequest
0 голосов
/ 23 марта 2020

Я следую этому руководству, чтобы создать чат-бота в Microsoft Azure, и я застрял с этой ошибкой

d:\Bitbucket\factbot\index.js:10
var connector = useEmulator ? new builder.ChatConnector() : new botbuilder_azure.BotServiceConnector({
                              ^

TypeError: builder.ChatConnector is not a constructor
    at Object.<anonymous> (d:\Bitbucket\factbot\index.js:10:31)
    at Module._compile (internal/modules/cjs/loader.js:698:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:712:10)
    at Module.load (internal/modules/cjs/loader.js:600:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:539:12)
    at Function.Module._load (internal/modules/cjs/loader.js:531:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:754:12)
    at startup (internal/bootstrap/node.js:283:19)
    at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
Waiting for the debugger to disconnect...
TypeError: builder.ChatConnector is not a constructor
    at Object.<anonymous> (d:\Bitbucket\factbot\index.js:10:31)
    at Module._compile (internal/modules/cjs/loader.js:698:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:712:10)
    at Module.load (internal/modules/cjs/loader.js:600:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:539:12)
    at Function.Module._load (internal/modules/cjs/loader.js:531:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:754:12)
    at startup (internal/bootstrap/node.js:283:19)
    at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)

код индекса. js здесь

https://pastebin.com/iseenzYP

Я отлаживал с помощью node.js в коде Visual Studio.

Кто-нибудь также сталкивался с проблемой в этом руководстве?

...