art-template img无显示问题

art-template是一个用于动态渲染ui界面的模板引擎。

代码示范:

c 复制代码
  <td >
    <img src={{$value.executorSignature}} alt="" style="width: auto;height: 18px"/>
   </td>
   <td>
     <img src="/user/file/preview/siginfile/{{$value.patientSignature}}" alt="" style="width: auto;height: 18px" />
   </td>

原因,无法解析到根目录,需要在head里面加上base根目录

c 复制代码
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
    <base href="http://gateway-service" />
	<title>document</title>
</head>
相关推荐
夜郎king18 分钟前
湖南高考天气查询:基于 HTML5 与百度天气 API 实现页面展示
前端·html5·百度天气实践·天气信息可视化
云水一下7 小时前
TypeScript 从零基础到精通(五):高级类型与泛型
前端·javascript·typescript
counterxing7 小时前
vibe coding 之后,我更不想打字了
前端·agent·ai编程
云水一下8 小时前
TypeScript 从零基础到精通(六):类型声明与模块化
javascript·typescript
copyer_xyf8 小时前
Python 模块与包的导入导出
前端·后端·python
研☆香8 小时前
es6新特性功能介绍(四)
前端·ecmascript·es6
微扬嘴角8 小时前
React篇1--JSX语法规则、组件、组件实例的3大特性
前端·react.js·前端框架
copyer_xyf8 小时前
Python venv 虚拟环境
前端·后端·python
无聊的老谢9 小时前
Vue 3 + TypeScript 构建大型电信运维平台的前端架构设计
前端·vue.js·typescript
xiaofeichaichai9 小时前
Map / Set / WeakMap / WeakSet
前端·javascript