gpt4 book ai didi

javascript - 如何在 jsreport 中包含助手

转载 作者:行者123 更新时间:2023-12-04 12:10:42 27 4
gpt4 key购买 nike

我正在使用 Dotnet Core 2.2 通过 JSReport (https://jsreport.net/) 生成报告
我使用本地 JsReport,所以我将模板和数据发送到本地服务器并取回 pdf。现在我需要在 javascript 中格式化日期,所以我需要将 moment.js 包含到我的模板中。我不知道该怎么做。

在 html 中,我需要使用 moment.js 将 StartDate 格式化为格式化的 Date
我不知道如何将 moment.js 包含到模板中以及如何添加助手。

对于 JSReport,我使用引擎 chrome-pdf 和 Handlebars 作为模板引擎 (https://jsreport.net/learn/handlebars)

我试图将 moment.js 包含在

<script src="http://localhost:5000/public/js/moment.js"/>
<script>
function formatDate(date){
return moment(date).format("dd MMMM yyyy");
}
</script>

但是当我调用 {{{formateDate startDate}}}} 在 html 模板中,似乎无法识别函数/助手。

我的 C# 代码:
[HttpGet("reporting")]
public async Task<IActionResult> Test(){
var sdr = await _repo.GetStaffDefaultRates();
var dto = _mapper.Map<List<StaffDefaultRate>, List<ReportDto>>(sdr);
var x = new {
bootstrapcss = "http://localhost:5000/public/css/bootstrap.min.css",
publicPath = "http://localhost:5000/public/",
message = "hello world",
today = DateTime.Now.ToString("dd MMM yyyy"),
staffRates = dto,
};
var staffRates = _fileRepository.ReadReportTemplate("StaffRates.html");
var rs = new ReportingService("http://localhost:5488");
var report = await rs.RenderAsync(new RenderRequest(){
Template = new Template(){
Recipe = Recipe.ChromePdf,
Engine = Engine.Handlebars,
Content = staffRates,
}, Data = x
});
var memory = new MemoryStream();
await report.Content.CopyToAsync(memory);
memory.Position = 0 ;
return File(memory, "application/pdf");
// return Ok(staffRates);
}

我的模板:
<html>

<head>
<title> Staff Default Rates</title>
<link href="{{bootstrapcss}}" rel="stylesheet">
</link>
</head>

<body>
<div class="sticky-top">
<div class="row pt-3 header">
<div class="col-6 text-left">
<img src="http://localhost:5000/public/logo-full.jpg" width="100%"></img>
</div>
<div class="col-6 text-right"></div>
</div>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-12 text-center">
<h2>Staff List {{today}}</h2>
<table class="table table-striped">
<thead>
<tr>
<th rowspan="2">&nbsp;</th>
<th rowspan="2" colspan="1" class="align-middle">Staff Roles</th>
<th > Start Date </th>
</tr>
</thead>
<tbody>
{{#each staffRates}}
<tr>
<td>{{id}}</td>
<td>{{staffType}}</td>
<td class='text-center'>{{startDate}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</div>
<div class="container">
<div class="row pb-3 footer fixed-bottom">
<div class="col-12 text-center">
<img src="http://localhost:5000/public/footer.jpg" width="100%"></img>
</div>
</div>
</div>
</body>

</html>

最佳答案

最小的例子看起来像这样。

var result = rs.RenderAsync(new RenderRequest  {
Template = new Template
{
Content = "{{myFormat date}}",
Helpers = @"
const moment = require('moment')
function myFormat(d) {
return moment(d).format('dd MMMM yyyy')
}",
Engine = Engine.Handlebars,
Recipe = Recipe.ChromePdf
},
Data = new
{
date = DateTime.Now
}
}).Result;

result.Content.CopyTo(File.OpenWrite("report.pdf"));

注意你的服务器应该有 local files access enabled .否则调用 require('moment')抛出。提供的示例将像在默认 jsreport 上一样工作,因为它已经安装了 moment 模块。如果您想使用另一个自定义模块,您需要使用 npm i mycustommodule 安装它.

关于javascript - 如何在 jsreport 中包含助手,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58851407/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com