我有一些基本的r代码,如:
const el = '<button class="create-panorama">Create panorama</button>';
document.body.insertAdjacentHTML('beforeend', el);
const cp = document.querySelector('.create-panorama');
cp.addEventListener('click', test, false);
function test() {
console.log('esesesee')
}
我想在Tableau中获取dupli_2输出。我使用了Rserve()包,但后来没有任何线索。