You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Translate the HTML document specified by the name from default or specified storage. Result document will be saved into the default or specified storage; result path will be like /{folder}/{name}_{lang_pair}.{extension}.
114
-
115
-
### Example
116
-
```javascript
117
-
var Asposehtmlcloud =require('asposehtmlcloud');
118
-
119
-
var apiInstance =newAsposehtmlcloud.TranslationApi();
120
-
121
-
var name ="name_example"; // String | Document name.
122
-
123
-
var srcLang ="srcLang_example"; // String | Source language.
124
-
125
-
var resLang ="resLang_example"; // String | Result language.
126
-
127
-
var opts = {
128
-
'folder':"folder_example", // String | The source & result document folder.
129
-
'storage':"storage_example"// String | The source & result document storage.
130
-
};
131
-
132
-
varcallback=function(error, data, response) {
133
-
if (error) {
134
-
console.error(error);
135
-
} else {
136
-
console.log('API called successfully. Returned data: '+ data);
0 commit comments