Golang语言中gorm连接PostgreSQL 报错?
用Go语言中的gorm创建连接PostgreSQL 数据库,报错如下:cannot use column (variable of type Column) as gorm.ColumnType value in argument to append: Column does not implement gorm.ColumnType (missing method AutoIncrement)请教一下高手如何修改?
2 回答1k 阅读✓ 已解决
不加引号也可以:
$_GET[AB]
$_POST[AB]
但是,在这种情况下,系统先是把AB
当作常量的,即:$_GET[常量AB]
和$_POST[常量AB]
,只有在上下文里找不到常量AB
时,才把 AB 当作$_GET
和$_POST
的索引引用。 所以,推荐:$_GET['AB']
$_POST['AB']
或$_GET["AB"]
$_POST["AB"]
但从性能方面考虑,$_GET['AB']
要优于$_GET["AB"]
,$_POST['AB']
要优于$_POST["AB"]
,所以最佳方案还是:$_GET['AB']
$_POST['AB']
。