我试图创建一个使用Linq到Xml的站点地图,但我得到一个空的命名空间属性,我想摆脱。例如
XNamespace ns = "http://www.sitemaps.org/schemas/sitemap/0.9"; XDocument xdoc = new XDocument(new XDeclaration("1.0","utf-8","true"),new XElement(ns + "urlset",new XElement("url",new XElement("loc","http://www.example.com/page"),new XElement("lastmod","2008-09-14"))));
结果是…
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url xmlns=""> <loc>http://www.example.com/page</loc> <lastmod>2008-09-14</lastmod> </url> </urlset>
我宁愿不在url元素上有xmlns =“”。我可以剥掉它使用Replace在最后的xdoc.ToString(),但是有更正确的方法吗?
“更正确的方式”是:
原文链接:https://www.f2er.com/xml/293655.htmlXDocument xdoc = new XDocument(new XDeclaration("1.0",new XElement(ns + "url",new XElement(ns + "loc",new XElement(ns + "lastmod","2008-09-14"))));
与您的代码相同,但在需要位于sitemap命名空间中的每个元素名称前加上“ns”。它足够聪明,不会在生成的XML中放置任何不必要的命名空间声明,因此结果是:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.example.com/page</loc> <lastmod>2008-09-14</lastmod> </url> </urlset>
这是,如果我没有错,你想要什么。