每当我尝试下载内容时,它只会加载该文件

时间:2019-01-29 08:59:10

标签: html html5

我正在尝试创建一个按钮,该按钮将下载我的HTML项目之一,但不是下载它,而是将该HTML加载到页面中并将页面重定向到该页面。

我尝试过下载属性和表单操作解决方案,但都失败了。

  {
    "compilerOptions": {
        "strictNullChecks": true,
        "moduleResolution": "node",
        "jsx": "react",
        "noUnusedParameters": true,
        "noUnusedLocals": true,
        "allowSyntheticDefaultImports":true,
        "target": "es5",
        "module": "ES2015",
        "declaration": true,
        "outDir": "./lib",
        "noImplicitAny": true,
        "importHelpers": true
      },
      "include": [
        "src/**/*",
        "index.d.ts",   // declaration file path
      ],
      "compileOnSave": false
    }

1 个答案:

答案 0 :(得分:0)

您需要添加download属性以使其起作用

<a href="your source here" download>Download</a>

参考更多信息link