本文整理汇总了TypeScript中url.URLSearchParams.set方法的典型用法代码示例。如果您正苦于以下问题:TypeScript URLSearchParams.set方法的具体用法?TypeScript URLSearchParams.set怎么用?TypeScript URLSearchParams.set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类url.URLSearchParams
的用法示例。
在下文中一共展示了URLSearchParams.set方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getWebAppUrl
function getWebAppUrl() {
const queryParams = new url.URLSearchParams();
queryParams.set('version', electron.app.getVersion());
// Set queryParams from environment variables.
if (process.env.SB_IMAGE) {
queryParams.set('image', process.env.SB_IMAGE);
console.log(`Will install Shadowbox from ${process.env.SB_IMAGE} Docker image`);
}
if (process.env.SB_METRICS_URL) {
queryParams.set('metricsUrl', process.env.SB_METRICS_URL);
console.log(`Will use metrics url ${process.env.SB_METRICS_URL}`);
}
if (process.env.SENTRY_DSN) {
queryParams.set('sentryDsn', process.env.SENTRY_DSN);
console.log(`Will use sentryDsn url ${process.env.SENTRY_DSN}`);
}
if (debugMode) {
queryParams.set('outlineDebugMode', 'true');
console.log(`Enabling Outline debug mode`);
}
// Append arguments to URL if any.
const webAppUrl = new url.URL('outline://web_app/index.html');
webAppUrl.search = queryParams.toString();
const webAppUrlString = webAppUrl.toString();
console.log('Launching web app from ' + webAppUrlString);
return webAppUrlString;
}
示例2: urlWithParams
urlWithParams(newParams: { [key: string]: any }): string {
const params = new URLSearchParams(this._query);
for (const k of Object.keys(newParams)) {
const v = newParams[k];
if (v) {
params.set(k, v);
} else {
params.delete(k);
}
}
const queryString = params.toString();
return format({
protocol: this._protocol,
hostname: this._hostname,
pathname: this._pathname,
slashes: true,
search: queryString == "" ? null : `?${queryString}`,
});
}
示例3: createWindow
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({width: 360, height: 640, resizable: false, icon: iconPath});
const pathToIndexHtml = path.join(__dirname, '..', 'www', 'electron_index.html');
const webAppUrl = new url.URL(`file://${pathToIndexHtml}`);
// Debug mode, etc.
const queryParams = new url.URLSearchParams();
if (debugMode) {
queryParams.set('debug', 'true');
}
webAppUrl.search = queryParams.toString();
const webAppUrlAsString = webAppUrl.toString();
console.log(`loading web app from ${webAppUrlAsString}`);
mainWindow.loadURL(webAppUrlAsString);
// Emitted when the window is closed.
mainWindow.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
// TODO: is this the most appropriate event?
mainWindow.webContents.on('did-finish-load', () => {
interceptShadowsocksLink(process.argv);
});
// The client is a single page app - loading any other page means the
// user clicked on one of the Privacy, Terms, etc., links. These should
// open in the user's browser.
mainWindow.webContents.on('will-navigate', (event: Event, url: string) => {
shell.openExternal(url);
event.preventDefault();
});
}
示例4: assert
const entries = searchParams.entries();
assert.deepEqual(entries.next(), { value: ["abc", "123"], done: false });
assert.deepEqual(entries.next(), { value: ["abc", "xyz"], done: false });
assert.deepEqual(entries.next(), { value: undefined, done: true });
const keys = searchParams.keys();
assert.deepEqual(keys.next(), { value: "abc", done: false });
assert.deepEqual(keys.next(), { value: "abc", done: false });
assert.deepEqual(keys.next(), { value: undefined, done: true });
const values = searchParams.values();
assert.deepEqual(values.next(), { value: "123", done: false });
assert.deepEqual(values.next(), { value: "xyz", done: false });
assert.deepEqual(values.next(), { value: undefined, done: true });
searchParams.set('abc', 'b');
assert.deepEqual(searchParams.getAll('abc'), ['b']);
searchParams.delete('a');
assert(!searchParams.has('a'));
assert.equal(searchParams.get('a'), null);
searchParams.sort();
}
{
const searchParams = new url.URLSearchParams({
user: 'abc',
query: ['first', 'second']
});
示例5: createWindow
function createWindow(connectionAtShutdown?: SerializableConnection) {
// Create the browser window.
mainWindow = new BrowserWindow({width: 360, height: 640, resizable: false});
const pathToIndexHtml = path.join(app.getAppPath(), 'www', 'electron_index.html');
const webAppUrl = new url.URL(`file://${pathToIndexHtml}`);
// Debug mode, etc.
const queryParams = new url.URLSearchParams();
if (debugMode) {
queryParams.set('debug', 'true');
}
webAppUrl.search = queryParams.toString();
const webAppUrlAsString = webAppUrl.toString();
console.info(`loading web app from ${webAppUrlAsString}`);
mainWindow.loadURL(webAppUrlAsString);
// Emitted when the window is closed.
mainWindow.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
const minimizeWindowToTray = (event: Event) => {
if (!mainWindow || isAppQuitting) {
return;
}
event.preventDefault(); // Prevent the app from exiting on the 'close' event.
mainWindow.hide();
};
mainWindow.on('minimize', minimizeWindowToTray);
mainWindow.on('close', minimizeWindowToTray);
// TODO: is this the most appropriate event?
mainWindow.webContents.on('did-finish-load', () => {
mainWindow!.webContents.send('localizationRequest', Object.keys(localizedStrings));
interceptShadowsocksLink(process.argv);
if (connectionAtShutdown) {
console.info(`was connected at shutdown, reconnecting to ${connectionAtShutdown.id}`);
sendConnectionStatus(ConnectionStatus.RECONNECTING, connectionAtShutdown.id);
startVpn(connectionAtShutdown.config, connectionAtShutdown.id, true)
.then(
() => {
console.log(`reconnected to ${connectionAtShutdown.id}`);
},
(e) => {
console.error(`could not reconnect: ${e.name} (${e.message})`);
});
}
});
// The client is a single page app - loading any other page means the
// user clicked on one of the Privacy, Terms, etc., links. These should
// open in the user's browser.
mainWindow.webContents.on('will-navigate', (event: Event, url: string) => {
shell.openExternal(url);
event.preventDefault();
});
}