打字稿
根據@types/rangy
你有兩個選擇:
選項1. import 'rangy'
選工作2 import * as rangy from 'rangy'
您不能這樣做import rangy from 'rangy'
,因爲rangy
沒有默認的es6導出。
你不能這樣做import { RangySelection } from 'rangy'
,因爲rangy
不是es6兼容模塊。界面RangySelection
將提供兩種導入選項。
角(SystemJS)
從服務器獲取返回的模塊正確,你必須告訴SystemJS
,它應該尋找它。這是在System.config
內部完成的:
添加行'rangy': 'npm:rangy/lib/rangy-core.js',
到map
config的元素。從角向快速啓動的整個配置:
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
'app': 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'rangy': 'npm:rangy/lib/rangy-core.js',
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
defaultExtension: 'js',
meta: {
'./*.js': {
loader: 'systemjs-angular-loader.js'
}
}
},
rxjs: {
defaultExtension: 'js'
}
}
});
多好,它的工作原理!保存和恢復模塊怎麼樣?我如何創建一個新的RangySelection對象?我嘗試將rangy-selectionsaverestore.js添加到System.js,但沒有成功... – Alessandro
您可以使用'rangy.getSelection'或'rangy.createRange'來獲取相應的實例。至於rangy模塊 - 我真的不知道如何正確加載它們。也沒有他們的類型。 –
感謝您的回答,它真的幫助我! – Alessandro