angular アプリ内にドロップボックス チューザーを実装しようとしています。しかし、チューザーコードはjavascriptです。私は初心者なので、角度でjsを実装する方法がわかりません。セレクターの私のjsコードはこちらです。
options = {
success: function(files) {
console.log("worked");
files.forEach(function(file) {
// add_file_to_list(file);
});
},
cancel: function() {
//optional
},
linkType: "direct", // "preview" or "direct"
multiselect: true, // true or false
extensions: ['.csv', '.txt'],
};
var button = Dropbox.createChooseButton(options);
document.getElementById("dropbox-upload-container").appendChild(button);
<script type="text/javascript" src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="My-key-here"></script>
<div id="dropbox-upload-container"></div>
Angular でこの種の機能を実現する方法については、何でも役に立ちます。