撰稿人、站长、产品经理、架构师、独立开发者。
年前,写了《某互联网租车平台复盘——如何hold住一整个行业》(文章加了密码,一般人看不到)。 这一篇主要是对 […]
nodejs的服务器,访问根目录的txt文件。
无法访问。
我一直以为是nodejs服务器的反向代理造成的。
今天发现不是。
而是nginx服务器的配置造成的。
做了一些修改
location ~ .*.(js|css|txt)?$ #这里加入|txt即可。
{
expires 12h;
error_log off;
access_log /dev/null;
}
最近一周迭代了表单引擎。增加了地址选择器。不太满意,先这样,后边再说吧。表单标题实现了条件配置,不必局限于固定的value值。
oms也做了一些迭代。增加了一种订单的类型(免费)。修改了一下订单的模型。
产品管理系统也做了些迭代,增加一种product type,增加订单分类的分类法。
<label
v-for="(item, i) in radioGroup.items" :key="i">
<input
class=""
type="radio"
:name="radioGroup.field"
v-model="radioGroup.value"
:value="item.key"
/>
{{ item.name }}
</label>
<!--
radioGroup:the json of the radios.
radioGroup.items:the json of every radio item.
radioGroup.field:the field of the radio used.
radioGroup.value:the value of the radioGroup.
item.key:the key of every radio item.
item.name:the name of every radio item.
-->