1. 程式人生 > >如何解決XML檔案中的警告提示“No grammar constraints (DTD or XML Schema) referenced in the document.”

如何解決XML檔案中的警告提示“No grammar constraints (DTD or XML Schema) referenced in the document.”

方法一:常用方法   關閉XML驗證

工具欄:windows => preferences => xml => xml files => validation => Indicate when no grammar is specified:選擇Ignore即可。

 

方法二:(個人推薦)

新增 內容如下

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/2002/xmlspec/dtd/2.10/xmlspec.dtd">

方法三(個人推薦)

直接加上 <!DOCTYPE xml>