我正在尝试使用NodeJs和Azure DocumentDb创建示例应用程序。我已经从npm添加了所需的DocumentDb SDK。
我在尝试为我的示例数据库端点创建文档时出现问题,这似乎是代理问题。请告诉我们如何从nodejs向DocumentDB SDK提供代理配置。
CODE
text_val = iconv(data_val$SentimentText, "UTF-8", "ASCII", sub = "")
corpus_val = Corpus(VectorSource(text_val))
tdm_val = TermDocumentMatrix(
corpus_val,
control = list(
removePunctuation = TRUE,
removestopWords = TRUE,
stemming = FALSE,
removeNumbers = TRUE,
tolower = TRUE,
weighting = weightTfIdf,
dictionary = tdm_train$dimnames$Terms
)
)
答案 0 :(得分:0)
您的环境中是否设置了代理?如果没有,一个可能的问题是端点可能没有正确输入。您可以通过登录Azure Portal获取端点URI。在Azure门户中,导航到您的DocumentDB帐户并单击帐户刀片上的“密钥”图标,您应该在那里看到URI。