Re: Fw: [GENERAL] PLV8 and JS exports / referencing

Поиск
Список
Период
Сортировка
От Sehrope Sarkuni
Тема Re: Fw: [GENERAL] PLV8 and JS exports / referencing
Дата
Msg-id CAH7T-arKMf3F56_c+y3b07F_J-Cyx_Waj69QyZV5JLR11qUPVA@mail.gmail.com
обсуждение исходный текст
Ответ на Fw: [GENERAL] PLV8 and JS exports / referencing  (Jon Erdman <postgresql@thewickedtribe.net>)
Список pgsql-hackers
On Sat, Nov 8, 2014 at 12:13 PM, Jon Erdman
<postgresql@thewickedtribe.net> wrote:
>
> So, I was trying to use mustache.js in PG by defining a V8 function that imports it. Older versions worked fine, but
innewer versions they use a class factory and I can't figure out how to reference the mustache stuff that it creates.
ApparentlyI need to know how our V8 implementation does exports. 

If you define a variable named "exports" before the Mustache factory
code then it'll make it think it's loading in a CommonJS environment
and the "exports" variable will be populated with the Mustache
methods.

I'm not too familiar with PLV8 (so I'm not sure if there's a
better/direct way to support modules) but the following works fine:

CREATE OR REPLACE FUNCTION mustache(template text, view json)   RETURNS TEXT   LANGUAGE plv8   IMMUTABLE   STRICT
AS $BODY$
var exports = {};
// Copy/paste https://raw.githubusercontent.com/janl/mustache.js/master/mustache.js
var Mustache = exports;
return Mustache.render(template, view);
$BODY$;

test=> SELECT mustache('test: {{foo}}', '{"foo": "bar"}'::json);mustache
-----------test: bar
(1 row)

Regards,
-- Sehrope Sarkuni
Founder & CEO | JackDB, Inc. | https://www.jackdb.com/



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: row_to_json bug with index only scans: empty keys!
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: two dimensional statistics in Postgres