Ionic framework 在何处创建图标中的标题?

Ionic framework 在何处创建图标中的标题?,ionic-framework,ionic3,Ionic Framework,Ionic3,在我下面的一篇关于图标的教程中,我遇到了这样一句话: <ion-pane>headers and other things are here</ion-pane> 标题和其他内容都在这里 因为我在我的应用程序中找不到这一行,我不知道把我的标题和标签放在哪里。有人有什么建议吗? 这是我的HTML脚本,包含头部和身体部分的内容: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> &l

在我下面的一篇关于图标的教程中,我遇到了这样一句话:

<ion-pane>headers and other things are here</ion-pane>
标题和其他内容都在这里
因为我在我的应用程序中找不到这一行,我不知道把我的标题和标签放在哪里。有人有什么建议吗? 这是我的HTML脚本,包含头部和身体部分的内容:

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <script data-ionic="inject">
    (function(w){var i=w.Ionic=w.Ionic||{};i.version='3.9.2';i.angular='5.0.3';i.staticDir='build/';})(window);
  </script>
  <meta charset="UTF-8">
  <title>Ionic App</title>
  <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  <meta name="format-detection" content="telephone=no">
  <meta name="msapplication-tap-highlight" content="no">

  <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
  <link rel="manifest" href="manifest.json">
  <meta name="theme-color" content="#4e8ef7">

  <!-- add to homescreen for ios -->
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="black">

  <!-- cordova.js required for cordova apps (remove if not needed) -->
  <script src="cordova.js"></script>

  <!-- un-comment this code to enable service worker
  <script>
    if ('serviceWorker' in navigator) {
      navigator.serviceWorker.register('service-worker.js')
        .then(() => console.log('service worker installed'))
        .catch(err => console.error('Error', err));
    }
  </script>-->

  <link href="build/main.css" rel="stylesheet">

</head>
<body>

  <!-- Ionic's root component and where the app will load -->
  <ion-app></ion-app>

  <!-- The polyfills js is generated during the build process -->
  <script src="build/polyfills.js"></script>

  <!-- The vendor js is generated during the build process
       It contains all of the dependencies in node_modules -->
  <script src="build/vendor.js"></script>

  <!-- The main bundle js is generated during the build process -->
  <script src="build/main.js"></script>

</body>
</html>

(函数(w){var i=w.Ionic=w.Ionic | |{};i.version='3.9.2';i.angular='5.0.3';i.staticDir='build/';})(窗口);
离子应用

在页面文件夹中。如果您没有页面文件夹,请在terminal
ionic generate page pageName
和go pages文件夹中运行此代码。
将有助于检查。

docs欢迎您,请单击“此答案有用”(向上箭头)。祝您愉快:)