我使用 q-select 来显示月份,并且字体非常小,所以我想让选项更大。我尝试更改 css 中的字体大小,但它不起作用。
我选择的自动取款机
<q-select
ref="month"
input-style="zoom: 1.2; text-align: right;"
rounded outlined
clearable
class="text-h4"
v-model="oMonth"
:options="oMonths"
/>
Run Code Online (Sandbox Code Playgroud)
输出看起来像 月份选择
我有一个包含三列的 postgrSQL 表,其中一列是 json 字段:
id [num] || school [char] || info [json]
============================================================================
1 || 1st || [{"fistname": "Bill", "Lastname": "Maison"}]
2 || 2nd || [{"fistname": "John", "Lastname": "Handson"}]
3 || 3rd || []
Run Code Online (Sandbox Code Playgroud)
我想用 postgREST 过滤空信息字段。
我现在的网址: https://127.0.0.1/table?&info->0->firstname=is.null
这实际上返回所有空值,但我该如何以其他方式做到这一点呢?排除所有空值?