我覺得從隱藏的iframe的部分(AT-至少它似乎爲我做的跨域策略塊你)但你可以下載表格並顯示它,
rm(list = ls())
library(shiny)
ui <- shinyUI(fluidPage(
tags$head(
tags$script(
HTML(
'
$(document).ready(function(){
// Should work if not blocked
$("#myiframe").attr("src","http://www.investing.com/quotes/streaming-forex-rates-%E2%80%93-majors");
$("#myiframe").load(function(){
console.log("UPDATED");
var iframe = $("#myiframe").contents(),
tbl = iframe.find("#cr1").clone();
iframe.find("html").replaceWidth(tbl);
});
});
'
)
)
),
titlePanel("Getting A specific div from external website"),
mainPanel(fluidRow(
tags$iframe(id="myiframe",seamless="seamless",src="", height=600, width=1000),
dataTableOutput("tbl1")
)
)
))
library(httr)
library(XML)
server <- shinyServer(function(input, output) {
url <- "http://www.investing.com/quotes/streaming-forex-rates-%E2%80%93-majors"
page.DOM <- content(GET(url))
tables <- readHTMLTable(page.DOM)
exchng.tbl <- tables$cr1
# cr1
output$tbl1 <- renderDataTable({
exchng.tbl
})
})
shinyApp(ui, server)
這是什麼語言?你用JavaScript標記了你的問題,但你的代碼不是JavaScript。 –
其R,我需要使用Javascript來執行該調用。我將刪除不必要的標籤 –