Clearsilver 模板系统 - cs_render() 和 CSOUTFUNC 问题

发布于 2024-11-15 18:09:20 字数 664 浏览 2 评论 0原文

从我的代码中摘录:

NEOERR*
func(void *,char *);
...
char* buf;
buf = (char*) malloc(1024);
HDF* hdf;
CSPARSE* cs;
hdf_init(&hdf);
hdf_set_value(hdf, "name", "foo"); 
cs_init(&cs, hdf);
strcpy(buf, "This is <?cs var:name ?>");
cs_parse_string(cs, buf, 1024);
cs_render(cs, NULL , func);
...
NEOERR*
func(void *b, char* a)
{
    printf("%s", a);
}

输出为:

This is<space>

如果我使用

strcpy(buf, "<?cs var:name ?>");

,则输出为

foo

How can I use templateding Commands with static text?我的 CSOUTFUNC 函数有什么问题?

预先非常感谢

Extract from my code:

NEOERR*
func(void *,char *);
...
char* buf;
buf = (char*) malloc(1024);
HDF* hdf;
CSPARSE* cs;
hdf_init(&hdf);
hdf_set_value(hdf, "name", "foo"); 
cs_init(&cs, hdf);
strcpy(buf, "This is <?cs var:name ?>");
cs_parse_string(cs, buf, 1024);
cs_render(cs, NULL , func);
...
NEOERR*
func(void *b, char* a)
{
    printf("%s", a);
}

Output is:

This is<space>

If I use

strcpy(buf, "<?cs var:name ?>");

then the output is

foo

How can I use templating commands in combination with static text? What is wrong with my CSOUTFUNC-function?

Many thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

八巷 2024-11-22 18:09:20

问题在于

return (STATUS_OK);

已解决的函数中

NEOERR*
func(void *,char *);

缺失。

The problem was the missing

return (STATUS_OK);

in the function

NEOERR*
func(void *,char *);

Solved.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文