1

是时候在模板中使用JSONb 数据类型作为输入,并将 PostgreSQL 查询作为模板系统... Mustache将是完美的,如果有一些用于 PLpgSQL 的 Mustache 实现(或适用于C)...似乎没有人。

但是Javascript-mustache有一个很好的源代码:如何为 PLv8 使用/调整它?

在这样的上下文中多次调用 mustache 的最佳方式(性能)是
SELECT tplEngine_plv8(input_jsonb,tpl_mustashe) as text_result FROM t什么?


测试和讨论注意事项

测试:http: //jsfiddle.net/47x341wu/

CREATE TABLE story (
  id int NOT NULL PRIMARY KEY,
  title text NOT NULL,
  UNIQUE(title)
);
CREATE TABLE story_character (
  id_story int REFERENCES story(id) NOT NULL,
  name text NOT NULL,
  UNIQUE(id_story,name)
);
INSERT INTO story (id,title) VALUES (1,'African jungle story'), 
  (2,'Story of India jungle');
INSERT INTO story_character(id_story,name) VALUES 
  (1,'Tarzan'), (1,'Jane'), (2,'Mowgli'), (2,'Baloo');

CREATE VIEW t AS 
  select id_story, jsonb_build_object('title',title, 
      'names', jsonb_agg( jsonb_build_object('name', name) )
   ) AS j
  from story s INNER JOIN story_character c ON s.id=c.id_story 
  group by id_story,title;

因此,使用 VIEW t 我们有一个小胡子模板的名称和标题,

SELECT tplEngine_plv8(
  j,
  '<br/>* <b>{{title}}</b> with: {{#names}} <i>{{name}}</i>; {{/names}}'
 ) as result
FROM t;

并将其与 JSFiddle 结果进行比较。


性能测试

使用EXPLAIN ANALYZE...也许在测试表中添加数百个随机值。而且,测试还调用策略:一次一个或按数组。

CREATE FUNCTION mustache_engine(
  p_input JSONB, 
  p_template TEXT
) RETURNS TEXT language plv8 as $$
   // copy https://rawgit.com/janl/mustache.js/master/mustache.js
   // and somethings more
$$;

或者

CREATE FUNCTION mustache_engine(
  p_inputs JSONB[],  -- many inputs 
  p_templates TEXT   -- one template
) RETURNS TEXT[]     -- many resuts
language plv8 as $$ ... $$;

CREATE FUNCTION mustache_engine(  -- many input-template pairs
  p_inputs JSONB[],   
  p_templates TEXT[]
) RETURNS TEXT[]     -- many resuts
language plv8 as $$ ... $$;
4

1 回答 1

2
create or replace function mustache(template text, view json, partials   json) returns text
language plv8 as 
 << copy https://rawgit.com/janl/mustache.js/master/mustache.js >>
 var mustache=this.Mustache;
return mustache.render(template, view, partials)
 $$

;

于 2018-03-18T10:05:36.813 回答