Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个 XML 模板以导出到 Excel。
我想做这样的事情:
<Worksheet ss:Name=<%= page.title %>>
为工作表提供页面标题的名称,但这不起作用。
如果我做:
<Worksheet ss:Name="sheet1">
一切正常。
如何将页面标题分配给工作表名称?
问题可能是您没有page.title用引号括起来,因此 Excel 无法正确解析文件。您应该将它们添加到 erb 代码之外:
page.title
<Worksheet ss:Name="<%= page.title %>">