2

我在使用带有法语口音 (é, è, â...) 的 DT 时遇到问题:

  • 在 RStudio 查看器中,这些字符被替换为“�”。
  • 在闪亮中,字符显示得很好,但如果我搜索重音字符,则找不到结果。

代码 :

library(DT)
library(shiny)

# Viewer

dataf <- data.frame(Label =  "Activité", Value = 15, stringsAsFactors = F)
datatable(dataf)

# Shiny

server <- function(input, output) {
  output$dtf <- renderDataTable({
    data.frame(Label =  "Activité", Value = 15, stringsAsFactors = F)
    })
}

ui <- fluidPage(
  dataTableOutput('dtf')
)

shinyApp(ui = ui, server = server)

我试过了 :

  • 将 dataf 的编码设置为 UTF-8 和 latin1
  • 将 datatbale 的转义参数更改为 TRUE
  • 将 RStudio 的默认文本编码设置为 UTF-8
  • 更换浏览器:Firefox 41 & Chrome 45

但没有解决问题

我的 sessionInfo(我使用 RStudio 0.99.484):

R version 3.2.1 (2015-06-18)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows 7 (build 7601) Service Pack 1

locale:
[1] LC_COLLATE=French_France.1252  LC_CTYPE=French_France.1252   
[3] LC_MONETARY=French_France.1252 LC_NUMERIC=C                  
[5] LC_TIME=French_France.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] shiny_0.12.2 DT_0.1      

loaded via a namespace (and not attached):
 [1] htmlwidgets_0.5  R6_2.1.1         magrittr_1.5     htmltools_0.2.6  tools_3.2.1     
 [6] rstudioapi_0.3.1 yaml_2.1.13      Rcpp_0.12.1      jsonlite_0.9.17  digest_0.6.8    
[11] xtable_1.7-4     httpuv_1.3.3     mime_0.4     

欢迎任何帮助,谢谢,

热雷米

4

0 回答 0