撰稿人、站长、产品经理、架构师、独立开发者。
最近一周迭代了表单引擎。增加了地址选择器。不太满意,先这样,后边再说吧。表单标题实现了条件配置,不必局限于固定的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.
-->
一年做成一件事,2021年有点意外,做成了两件事。 第一件事,是将我的低代码开发平台迭代到比较成熟,可以正式使 […]
微信小程序嵌入WEB的登录和PC端微信扫码登录,难度不大,但涉及修改的地方比较多,涉及到我的BAAS平台、低代 […]
记录一个PHP错误:接口return为null,print_r或echo可以输出,但最后带一个null字符串。
有两种情况。
1、json字符串有错误,导致json_decode出错。
2、接口的函数中没有return结果,而是在调用的其它函数中return结果。